wernis extension is now alpha code (only listing in admin area is missing), naming...
[mailer.git] / inc / modules / admin / what-config_home.php
index e606232a754c486b8eeecb51c8b2855c67ac6ec6..6ce223e3136fb873070362b89108a129c913aa89 100644 (file)
@@ -60,9 +60,9 @@ case "settings": // Settings related to the index page
        {
                // 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;
@@ -72,7 +72,7 @@ case "target": // Set which what-file will be placed in home-page (only modules.
        {
                // 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'];
+               $_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 = "<A href=\"".URL."/modules.php?module=admin&amp;what=config_home&amp;sub=target&amp;home=".$wht."\">"._IS_NEW_HOME."</A>";
-               if ($wht == $CONFIG['index_home'])
+               if ($wht == $_CONFIG['index_home'])
                {
                        // Is current home
                        $LINK   = "<STRONG class=\"admin_note\">"._IS_CURRENT_HOME."</STRONG>";