Update url.class.php
This commit is contained in:
parent
7c378836f2
commit
9eb880f6d3
|
@ -61,7 +61,7 @@ class Url
|
||||||
$subString = mb_substr($this->uri, 0, $filterFullLenght, CHARSET);
|
$subString = mb_substr($this->uri, 0, $filterFullLenght, CHARSET);
|
||||||
|
|
||||||
// Check coincidence without the last slash at the end, this case is notfound
|
// Check coincidence without the last slash at the end, this case is notfound
|
||||||
if ($subString==$filterURIwoSlash) {
|
if (($subString==$filterURIwoSlash) && ($filterName!='admin')) {
|
||||||
$this->setNotFound();
|
$this->setNotFound();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -79,6 +79,8 @@ class Url
|
||||||
} elseif (!empty($this->slug) && ($filterName=='blog')) {
|
} elseif (!empty($this->slug) && ($filterName=='blog')) {
|
||||||
$this->setNotFound();
|
$this->setNotFound();
|
||||||
return false;
|
return false;
|
||||||
|
} elseif ($filterName=='admin') {
|
||||||
|
$this->slug = ltrim($this->slug, '/');
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue