]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_mods.php
Fixes for auto-activation of extensions while registration phase
[mailer.git] / inc / modules / admin / what-config_mods.php
index f5e8f3c949931c16694c8d3786ca409e2a5ef17e..809f4be165eadc650ede036fbc2f8d5dac3c1cec 100644 (file)
@@ -47,9 +47,9 @@ addMenuDescription('admin', __FILE__);
 
 if (isFormSent('edit')) {
        // Check if at least one module is selected
-       if (countPostSelection() > 0) {
+       if (ifPostContainsSelections()) {
                // 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'],
@@ -123,7 +122,7 @@ if (isFormSent('edit')) {
        loadTemplate('admin_settings_saved', false, '{--ADMIN_MODS_CHANGED--}');
 }
 
-if (countPostSelection() == 0) {
+if (!ifPostContainsSelections()) {
        // Load module data (We do not need to check if there's at least one...)
        $result = SQL_QUERY('SELECT
        `id`, `module`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`
@@ -132,7 +131,7 @@ FROM
 ORDER BY
        `module` ASC', __FILE__, __LINE__);
 
-       $OUT = ''; $SW = 2;
+       $OUT = '';
        while ($content = SQL_FETCHARRAY($result)) {
                // Reset title to --- if it is NULL
                if (($content['module'] == 'index') || ($content['module'] == 'login')) {
@@ -140,14 +139,8 @@ ORDER BY
                        $content['module'] = '<strong><a href="{%url=modules.php?module=admin&amp;what=stats_mods&amp;mod=' . $content['module'] . '%}">' . $content['module'] . '</a></strong>';
                } // 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