1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

Notice removal

This commit is contained in:
Cameron
2013-04-24 17:42:22 -07:00
parent 68728368ad
commit 0004b47d96

View File

@@ -555,7 +555,13 @@ class e_navigation
var $admin_cat = array();
var $iconArray = array(
var $iconArray = array();
function __construct()
{
if(defined('E_32_MAIN')) // basic check so that it's not loaded on the front-end.
{
$this->iconArray = array(
'main' => E_32_MAIN,
'admin' => E_32_ADMIN,
'admin_pass' => E_32_ADPASS,
@@ -598,6 +604,10 @@ class e_navigation
'users' => E_32_USER,
'wmessage' => E_32_WELCOME
);
}
}
function getIconArray()
{