append ending slash to base location

This commit is contained in:
yggverse 2024-07-26 17:09:33 +03:00
parent 81975dd42a
commit 1a1924e166

View file

@ -23,16 +23,19 @@ class Base extends \Yggverse\Yoda\Abstract\Entity\Browser\Container\Page\Navbar\
if ($address->getHost())
{
$this->navbar->request->setValue(
$address->get( // build base
true,
true,
true,
true,
true,
false,
false,
false
)
rtrim(
$address->get(
true,
true,
true,
true,
true,
false,
false,
false
),
'/'
) . '/'
);
$this->navbar->page->update();