This commit is contained in:
Christian Tietze 2020-05-28 21:16:20 +05:30 committed by GitHub
commit adf9b4e7ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -56,12 +56,6 @@ class Url
$subString = mb_substr($this->uri, 0, $filterFullLenght, CHARSET);
// Check coincidence without the last slash at the end, this case is notfound
if ($subString==$filterURIwoSlash) {
$this->setNotFound();
return false;
}
// Check coincidence with complete filterURI
if ($subString==$filterFull) {
$this->slug = mb_substr($this->uri, $filterFullLenght);
@ -77,6 +71,12 @@ class Url
$this->setWhereAmI('home');
} elseif (!empty($this->slug) && ($filterURI=='/')) {
$this->setWhereAmI('page');
} elseif (empty($this->slug) && ($filterName=='tag')) {
$this->slug = $this->filters('tag');
$this->setWhereAmI('page');
} elseif (empty($this->slug) && ($filterName=='category')) {
$this->slug = $this->filters('category');
$this->setWhereAmI('page');
} elseif ($filterName=='admin') {
$this->slug = ltrim($this->slug, '/');
}