1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 04:32:01 +02:00

$emessage now loaded by default in admin.

This commit is contained in:
CaMer0n 2009-07-14 03:16:16 +00:00
parent 54166bd487
commit 0ef3c5d7cf

View File

@ -12,9 +12,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/header.php,v $
| $Revision: 1.31 $
| $Date: 2009-07-13 10:17:09 $
| $Author: marj_nl_fr $
| $Revision: 1.32 $
| $Date: 2009-07-14 03:16:16 $
| $Author: e107coders $
+---------------------------------------------------------------+
*/
@ -89,7 +89,7 @@ if (file_exists(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_footer.php')) {
@include_once(e_LANGUAGEDIR.'English/admin/lan_footer.php');
}
if (!defined('ADMIN_WIDTH')) {
define('ADMIN_WIDTH', 'width: 95%');
define('ADMIN_WIDTH', "width: 95%' class='adminlist");
}
if (!defined('ADMIN_TRUE_ICON'))
@ -689,4 +689,10 @@ if (strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE) {
}
$sql->db_Mark_Time('(End: Parse Admin Header)');
}
if(!is_object($emessage))
{
require_once(e_HANDLER."message_handler.php");
$emessage = &eMessage::getInstance();
}
?>