X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-maintenance.php;h=e2d3e6a9b89b4daeea50832ef98a9e2332e27ce1;hp=e5dde00cc91727a99c2e36dfeec54abdc554a0a6;hb=c45b1827a16928c65ecc1aea6a9d7a504c4874d4;hpb=e1653405d28923c78b2e292125306ccf61138f24 diff --git a/inc/modules/admin/what-maintenance.php b/inc/modules/admin/what-maintenance.php index e5dde00cc9..e2d3e6a9b8 100644 --- a/inc/modules/admin/what-maintenance.php +++ b/inc/modules/admin/what-maintenance.php @@ -32,40 +32,37 @@ ************************************************************************/ // 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); } + // Add description as navigation point ADD_DESCR("admin", basename(__FILE__)); if (isset($_POST['ok'])) { // De- or activate maintenance mode - switch ($CONFIG['maintenance']) + 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 -{ - switch ($CONFIG['maintenance']) +} else { + switch ($_CONFIG['maintenance']) { case 'Y': // Maintenance mode is active define('ADMIN_MAINTENANCE_MODE', ADMIN_MAINTENANCE_MODE_IS_ACTIVE); @@ -78,5 +75,6 @@ if (isset($_POST['ok'])) // Display form LOAD_TEMPLATE("admin_maintenance_form"); } + // ?>