X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mods.php;h=aad70b3f7489f8660b5df4cc05e05bb590013041;hb=cf3765c38cf0a76f396aca291f71858936e92956;hp=dee6e47d26f7ad2e2efc5993a7f576e325d99972;hpb=76fd13e5938a334f08e43893eb9a4ff49f72bf07;p=mailer.git diff --git a/inc/modules/admin/what-config_mods.php b/inc/modules/admin/what-config_mods.php index dee6e47d26..aad70b3f74 100644 --- a/inc/modules/admin/what-config_mods.php +++ b/inc/modules/admin/what-config_mods.php @@ -49,7 +49,7 @@ if (isFormSent('edit')) { // Check if at least one module is selected if (countPostSelection() > 0) { // Output header - $OUT = ''; $SW = 2; + $OUT = ''; // Edit selected modules foreach (postRequestParameter('sel') as $id => $sel) { @@ -66,7 +66,6 @@ if (isFormSent('edit')) { // Prepare array for the template $content = array( - 'sw' => $SW, 'mod' => $data['module'], 'id' => $id, 'title' => $data['title'], @@ -84,7 +83,7 @@ if (isFormSent('edit')) { loadTemplate('admin_mods_edit', false, $OUT); } else { // Nothing selected - loadTemplate('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_MODS_NOTHING_SELECTED--}'); // Remove maybe confusing data unsetPostRequestParameter('edit'); @@ -120,7 +119,7 @@ if (isFormSent('edit')) { } // END - if // Entries updated - loadTemplate('admin_settings_saved', false, getMessage('MODS_CHANGED')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_MODS_CHANGED--}'); } if (countPostSelection() == 0) { @@ -132,23 +131,16 @@ FROM ORDER BY `module` ASC', __FILE__, __LINE__); - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Reset title to --- if it is NULL - if (empty($content['title'])) $content['title'] = '---'; if (($content['module'] == 'index') || ($content['module'] == 'login')) { // Add link to detail statistics $content['module'] = '' . $content['module'] . ''; } // END - if - // Prepare array for the template - $content['sw'] = $SW; - // Load row template $OUT .= loadTemplate('admin_list_mods_row', true, $content); - - // Switch colors - $SW = 3 - $SW; } // END - while // Free memory