X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_home.php;h=cda95994d6a4da33433e5ddf8fac15196d69537a;hb=80769d81cc67b9213ea436e07365982fb3e7600d;hp=c134ccf7b67af00e6726aaa0892b374e24c221cd;hpb=6a8dc813c2e1bb91444f95162a010332aa2c2515;p=mailer.git diff --git a/inc/modules/admin/what-config_home.php b/inc/modules/admin/what-config_home.php index c134ccf7b6..cda95994d6 100644 --- a/inc/modules/admin/what-config_home.php +++ b/inc/modules/admin/what-config_home.php @@ -14,11 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * 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 * @@ -40,14 +38,16 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { die(); -} +} // 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 @@ -56,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); @@ -77,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 = '';