X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_home.php;h=cda95994d6a4da33433e5ddf8fac15196d69537a;hb=80769d81cc67b9213ea436e07365982fb3e7600d;hp=0c9857e75729e9419c597db3890fc82dc2938db8;hpb=6b13c5c64eebedd56683c78d799879e0dc618b21;p=mailer.git diff --git a/inc/modules/admin/what-config_home.php b/inc/modules/admin/what-config_home.php index 0c9857e757..cda95994d6 100644 --- a/inc/modules/admin/what-config_home.php +++ b/inc/modules/admin/what-config_home.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -41,11 +41,13 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Init 'sub' value $sub = ''; -if (isGetRequestParameterSet('sub')) $sub = getRequestParameter('sub'); +if (isGetRequestParameterSet('sub')) { + $sub = getRequestParameter('sub'); +} // END - if switch ($sub) { case 'settings': // Settings related to the index page @@ -54,14 +56,14 @@ switch ($sub) { adminSaveSettingsFromPostData(); // Display continue link - loadTemplate('admin_settings_saved', false, '{--ADMIN_CONTINUE_TO_CONFIG--}'); + displayMessage('{--ADMIN_CONTINUE_TO_CONFIG--}'); } else { // Prepare data for the template $content = array_fill(-1, 60, ''); $content[getConfig('index_delay')] = ' selected="selected"'; // Generate selection - $content['cookie_selection'] = createTimeSelections(getConfig('index_cookie'), 'index_cookie', 'YMWD'); + $content['cookie_selection'] = createConfigurationTimeSelections('index_cookie', 'YMWD'); // Output form loadTemplate('admin_config_home_settings', false, $content); @@ -75,10 +77,17 @@ switch ($sub) { } // END - if // Load all what menu points - $result = SQL_QUERY("SELECT id, what, title -FROM `{?_MYSQL_PREFIX?}_guest_menu` -WHERE `action`='main' AND `what` != '' AND `what` IS NOT NULL AND `locked`='N' -ORDER BY `sort` ASC", __FILE__, __LINE__); + $result = SQL_QUERY("SELECT + `id`, `what`, `title` +FROM + `{?_MYSQL_PREFIX?}_guest_menu` +WHERE + `action`='main' AND + `what` != '' AND + `what` IS NOT NULL AND + `locked`='N' +ORDER BY + `sort` ASC", __FILE__, __LINE__); // Init variables $OUT = '';