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

Mod to work with latest DB handler

This commit is contained in:
e107steved
2008-05-18 16:35:47 +00:00
parent df1e3eaed8
commit f33ddafde6

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/class2.php,v $ | $Source: /cvs_backup/e107_0.8/class2.php,v $
| $Revision: 1.53 $ | $Revision: 1.54 $
| $Date: 2008-04-28 13:42:23 $ | $Date: 2008-05-18 16:35:47 $
| $Author: e107coders $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
// //
@@ -280,11 +280,11 @@ $sql->db_Mark_Time('Start: Prefs, misc tables');
require_once(e_HANDLER.'admin_log_class.php'); require_once(e_HANDLER.'admin_log_class.php');
$admin_log = new e_admin_log(); $admin_log = new e_admin_log();
if ($merror == "e1") { if ($merror === "e1") {
message_handler("CRITICAL_ERROR", 6, ": generic, ", "class2.php"); message_handler("CRITICAL_ERROR", 6, ": generic, ", "class2.php");
exit; exit;
} }
else if ($merror == "e2") { else if ($merror === "e2") {
message_handler("CRITICAL_ERROR", 7, ": generic, ", "class2.php"); message_handler("CRITICAL_ERROR", 7, ": generic, ", "class2.php");
exit; exit;
} }