X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_home.php;h=c134ccf7b67af00e6726aaa0892b374e24c221cd;hb=4b9887f734067dc52a1730468e25ba066036a3e1;hp=610ddfd6bf9a126adcdc89da9d318b3f604e78b9;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa;p=mailer.git diff --git a/inc/modules/admin/what-config_home.php b/inc/modules/admin/what-config_home.php index 610ddfd6bf..c134ccf7b6 100644 --- a/inc/modules/admin/what-config_home.php +++ b/inc/modules/admin/what-config_home.php @@ -71,9 +71,9 @@ switch ($sub) { break; case 'target': // Set which what-file will be placed in home-page (only modules.php?module=index) - if (isGetRequestParameterSet(('home'))) { + if (isGetRequestParameterSet('home')) { // Set new home - updateConfiguration('index_home', getRequestParameter(('home'))); + updateConfiguration('index_home', getRequestParameter('home')); } // END - if // Load all what menu points @@ -83,7 +83,6 @@ WHERE `action`='main' AND `what` != '' AND `what` IS NOT NULL AND `locked`='N' ORDER BY `sort` ASC", __FILE__, __LINE__); // Init variables - $SW = 2; $OUT = ''; // Process all entries @@ -92,21 +91,17 @@ ORDER BY `sort` ASC", __FILE__, __LINE__); $newHomeLink = '{--_IS_NEW_HOME--}'; // Is this current home? - if ($content['what'] == getConfig('index_home')) { + if ($content['what'] == getIndexHome()) { // Is current home $newHomeLink = '
{--_IS_CURRENT_HOME--}
'; $content['title'] = '
' . $content['title'] . '
'; } // END - if // Prepare content - $content['sw'] = $SW; $content['link'] = $newHomeLink; // Load row template $OUT .= loadTemplate('admin_config_home_row', true, $content); - - // Switch color - $SW = 3 - $SW; } // END - while // Free memory @@ -119,8 +114,7 @@ ORDER BY `sort` ASC", __FILE__, __LINE__); default: // Output selection table loadTemplate('admin_config_home_main'); break; - -} +} // END - switch // [EOF] ?>