fix access to `CATEGORY_URI_FILTER` and `TAG_URI_FILTER` before define'd

This commit is contained in:
Christian Tietze 2019-08-23 18:30:30 +02:00
parent 2cf7339796
commit c968717dbf
1 changed files with 4 additions and 4 deletions

View File

@ -71,11 +71,11 @@ class Url
$this->setWhereAmI('home');
} elseif (!empty($this->slug) && ($filterURI=='/')) {
$this->setWhereAmI('page');
} elseif (empty($this->slug) && ($filterName==TAG_URI_FILTER)) {
$this->slug = TAG_URI_FILTER;
} elseif (empty($this->slug) && ($filterName==$this->filters('tag'))) {
$this->slug = $this->filters('tag');
$this->setWhereAmI('page');
} elseif (empty($this->slug) && ($filterName==CATEGORY_URI_FILTER)) {
$this->slug = CATEGORY_URI_FILTER;
} elseif (empty($this->slug) && ($filterName==$this->filters('category'))) {
$this->slug = $this->filters('category');
$this->setWhereAmI('page');
} elseif ($filterName=='admin') {
$this->slug = ltrim($this->slug, '/');