1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 09:34:54 +02:00

Notice Removal

This commit is contained in:
Cameron
2016-09-17 17:11:39 -07:00
parent 6216dc4d95
commit d571d915ec
2 changed files with 4 additions and 3 deletions

View File

@@ -124,7 +124,7 @@ class core_news_sef_noid_url extends eUrlConfig
// news/Category/Category-Name?page=xxx
// news/Short/Category-Name?page=xxx
$r[0] = $route[1] == 'category' ? 'Category' : 'Short';
$r[1] = $params['name'] ? $params['name'] : $params['id'];
$r[1] = !empty($params['name']) ? $params['name'] : $params['id'];
if($page) $parm = array('page' => $page);
}
break;