]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-maintenance.php
Admin user details extended, DEBUG_LOG() rewritten, random userid on refid=0 added
[mailer.git] / inc / modules / admin / what-maintenance.php
index 3b0bd4378b7708dd5929204d2a1c3e2ac4ca0591..481b418cb11bd0a4fca3ce99f49199def4df7354 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
+if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR("admin", __FILE__);
 
 if (isset($_POST['ok']))
 {
@@ -58,14 +57,11 @@ if (isset($_POST['ok']))
        }
 
        // Update config
-       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET maintenance='%s' WHERE config=0 LIMIT 1",
-        array($target_mode), __FILE__, __LINE__);
+       UPDATE_CONFIG("maintenance", $target_mode);
 
        // Load template
        LOAD_TEMPLATE("admin_settings_saved", false, $out);
-}
- else
-{
+} else {
        switch ($_CONFIG['maintenance'])
        {
        case 'Y': // Maintenance mode is active
@@ -79,5 +75,6 @@ if (isset($_POST['ok']))
        // Display form
        LOAD_TEMPLATE("admin_maintenance_form");
 }
+
 //
 ?>