1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01: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;

View File

@ -64,7 +64,8 @@ if(!isset($BANNER_TABLE))
<td colspan='2' class='forumheader3' style='text-align:center'>{BANNER_TABLE_ACTIVE}</td>
<td colspan='4' class='forumheader3' style='text-align:center'>{BANNER_TABLE_STARTDATE} {BANNER_TABLE_ENDDATE}</td>";
if($BANNER_TABLE_IP){
if(!empty($BANNER_TABLE_IP)) // review
{
$BANNER_TABLE .= "
</tr>
<tr>
@ -104,7 +105,7 @@ if(!isset($BANNER_MENU_END))
// ##### ------------------------------------ v2.x ------------------------------------------------------
$BANNER_TEMPLATE['menu']['start'] = "<div class='banner-menu text-center'>{SETIMAGE: w=800}";
$BANNER_TEMPLATE['menu']['start'] = "<div class='banner-menu text-center'>{SETIMAGE: w=800}";
$BANNER_TEMPLATE['menu']['item'] = "<div class='banner-menu-item'>{BANNER}<br /><br /></div>";
$BANNER_TEMPLATE['menu']['end'] = "</div>";