X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-config_home.php;h=2f5264047441bcc76f980653e1216eafd4cdd0bd;hb=0a7e0faba4feaf17432cbdcaf17eb7d2f3812a1e;hp=5a72347a087bfbeb438514ac259d25339cbfe507;hpb=5ef6ed7373ae85e5635e39e2a0adf9496a8add05;p=mailer.git diff --git a/inc/modules/admin/what-config_home.php b/inc/modules/admin/what-config_home.php index 5a72347a08..2f52640474 100644 --- a/inc/modules/admin/what-config_home.php +++ b/inc/modules/admin/what-config_home.php @@ -53,16 +53,16 @@ case "settings": // Settings related to the index page if (isset($_POST['ok'])) { // Save settings - ADMIN_SAVE_SETTINGS($_POST, "_config", "config='0'"); + ADMIN_SAVE_SETTINGS($_POST); OUTPUT_HTML("".ADMIN_CONTINUE_TO_CONFIG.""); } else { // Prepare data for the template $content = array_fill(-1, 60, ""); - $content[$CONFIG['index_delay']] = " selected=\"selected\""; + $content[$_CONFIG['index_delay']] = " selected=\"selected\""; - define('__INDEX_COOKIE_SELECTION', CREATE_TIME_SELECTIONS($CONFIG['index_cookie'], "index_cookie", "YMWD")); + define('__INDEX_COOKIE_SELECTION', CREATE_TIME_SELECTIONS($_CONFIG['index_cookie'], "index_cookie", "YMWD")); LOAD_TEMPLATE("admin_config_home_settings", false, $content); } break; @@ -71,8 +71,8 @@ case "target": // Set which what-file will be placed in home-page (only modules. if (isset($_GET['home'])) { // Set new home - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET index_home='%s' WHERE config='0' LIMIT 1", array($_GET['home']), __FILE__, __LINE__); - $CONFIG['index_home'] = $_GET['home']; + $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET index_home='%s' WHERE config=0 LIMIT 1", array($_GET['home']), __FILE__, __LINE__); + $_CONFIG['index_home'] = $_GET['home']; } // Load all what menu points @@ -85,7 +85,7 @@ case "target": // Set which what-file will be placed in home-page (only modules. while (list($id, $wht, $wtitle) = SQL_FETCHROW($result)) { $LINK = ""._IS_NEW_HOME.""; - if ($wht == $CONFIG['index_home']) + if ($wht == $_CONFIG['index_home']) { // Is current home $LINK = ""._IS_CURRENT_HOME."";