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,7 +23,8 @@ class Base extends \Yggverse\Yoda\Abstract\Entity\Browser\Container\Page\Navbar\
if ($address->getHost()) if ($address->getHost())
{ {
$this->navbar->request->setValue( $this->navbar->request->setValue(
$address->get( // build base rtrim(
$address->get(
true, true,
true, true,
true, true,
@ -32,7 +33,9 @@ class Base extends \Yggverse\Yoda\Abstract\Entity\Browser\Container\Page\Navbar\
false, false,
false, false,
false false
) ),
'/'
) . '/'
); );
$this->navbar->page->update(); $this->navbar->page->update();