]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-maintenance.php
Notice fixed, email navi now shown if on 2+ page
[mailer.git] / inc / modules / admin / what-maintenance.php
index 923926c45bde493a59699ce1a426899b0f077183..e2d3e6a9b89b4daeea50832ef98a9e2332e27ce1 100644 (file)
@@ -32,8 +32,7 @@
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
+if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
@@ -47,25 +46,22 @@ if (isset($_POST['ok']))
        switch ($_CONFIG['maintenance'])
        {
        case 'Y':
-               $target_mode = 'N';
+               $target_mode = "N";
                $out = ADMIN_MAINTENANCE_DEACTIVATED;
                break;
 
        case 'N':
-               $target_mode = 'Y';
+               $target_mode = "Y";
                $out = ADMIN_MAINTENANCE_ACTIVATED;
                break;
        }
 
        // 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");
 }
+
 //
 ?>