sedteam / Seditio

Seditio CMS Source

Home Page:https://seditio.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sed_breadcrumbs correction

SeditioCMS opened this issue · comments

$urlpaths = ($home) ? array_merge(array("/" => $L['Home']), $urlpaths) : $urlpaths;
change
$urlpaths = ($home) ? array_merge(array("#" => $L['Home']), $urlpaths) : $urlpaths;

commented

On a basic web page, the # symbol is used to link to a section within a page. So that the browser jumps down to that section after the page loads.
/ - root link!

Example:

  1. On domain https://seditio.org - link / leads to https://seditio.org/
  2. http://localhost/seditio - link / leads to https://localhost/

So everything is right here!
$urlpaths = ($home) ? array_merge(array("/" => $L['Home']), $urlpaths) : $urlpaths;

It doesn't work either, I'll post a video soon.
video: https://streamable.com/nfvn8x

commented

I fix this problem. Thanks Kaan! 84ed726