Fix admin filter bug

This commit is contained in:
Anaggh S 2018-09-10 16:31:18 +05:30
parent c2386e9c7d
commit 290fe689ac
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class Site extends dbJSON {
// Also, you can get the a particular filter // Also, you can get the a particular filter
public function uriFilters($filter='') public function uriFilters($filter='')
{ {
$filters['admin'] = '/'.ADMIN_URI_FILTER; $filters['admin'] = '/' . ADMIN_URI_FILTER . '/';
$filters['page'] = $this->getField('uriPage'); $filters['page'] = $this->getField('uriPage');
$filters['tag'] = $this->getField('uriTag'); $filters['tag'] = $this->getField('uriTag');
$filters['category'] = $this->getField('uriCategory'); $filters['category'] = $this->getField('uriCategory');