1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 06:38:00 +02:00

Bugtracker #5039 - missing icon on 'Site Down' admin page

This commit is contained in:
e107steved
2010-09-02 07:19:23 +00:00
parent 8889df2999
commit a690871889
2 changed files with 8 additions and 5 deletions

View File

@@ -443,6 +443,7 @@ $e_icon_array = array(
'language' => E_32_LANGUAGE,
'links' => E_32_LINKS,
'mail' => E_32_MAIL,
'maintain' => E_32_MAINTAIN,
'menus' => E_32_MENUS,
'meta' => E_32_META,
'newsfeed' => E_32_NEWSFEED,

View File

@@ -14,17 +14,19 @@
* $Author$
*
*/
require_once ("../class2.php");
if(!getperms("9"))
require_once ('../class2.php');
if(!getperms('9'))
{
header("location:".e_BASE."index.php");
header('location:'.e_BASE.'index.php');
exit();
}
$e_sub_cat = 'maintain';
include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_'.e_PAGE);
require_once (e_HANDLER."form_handler.php");
require_once (e_HANDLER."message_handler.php");
require_once (e_HANDLER.'form_handler.php');
require_once (e_HANDLER.'message_handler.php');
$emessage = eMessage::getInstance();
$emessage_method = e_AJAX_REQUEST ? 'add' : 'addSession';