]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_email.php
A lot code rewritten:
[mailer.git] / inc / modules / admin / what-config_email.php
index f72905d1bcb0278c8c4dc76be30351470a6cab3d..8af929b1113dffb1b92686ecdf4023f10aa36868 100644 (file)
@@ -100,7 +100,7 @@ if (isPostRequestParameterSet(('add_max'))) {
        } // END - if
 } elseif ((isFormSent('del')) && (countPostSelection() > 0)) {
        // Delete entries
-       $OUT = ''; $SW = 2;
+       $OUT = '';
        foreach (postRequestParameter('sel') as $id => $value) {
                // Load data
                $result = SQL_QUERY_ESC("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
@@ -108,20 +108,16 @@ if (isPostRequestParameterSet(('add_max'))) {
                $content = SQL_FETCHARRAY($result);
                SQL_FREERESULT($result);
 
-               // Add color switch
-               $content['sw'] = $SW;
-
                // Load row template and switch color
                $OUT .= loadTemplate('admin_config_email_del_row', true, $content);
-               $SW = 3 - $SW;
-       }
+       } // END - foreach
        $content['rows'] = $OUT;
 
        // Load main template
        loadTemplate('admin_config_email_del', false, $content);
 } elseif ((isFormSent('edit')) && (countPostSelection() > 0)) {
        // Edit entries
-       $OUT = ''; $SW = 2;
+       $OUT = '';
        foreach (postRequestParameter('sel') as $id => $value) {
                // Load data
                $result = SQL_QUERY_ESC("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
@@ -129,13 +125,9 @@ if (isPostRequestParameterSet(('add_max'))) {
                $content = SQL_FETCHARRAY($result);
                SQL_FREERESULT($result);
 
-               // Add color switch
-               $content['sw'] = $SW;
-
                // Load row template and switch color
                $OUT .= loadTemplate('admin_config_email_edit_row', true, $content);
-               $SW = 3 - $SW;
-       }
+       } // END - foreach
        $content['rows'] = $OUT;
 
        // Load main template
@@ -145,14 +137,10 @@ if (isPostRequestParameterSet(('add_max'))) {
        __FILE__, __LINE__);
        if (SQL_NUMROWS($result) > 0) {
                // List already existing entries for editing
-               $OUT = ''; $SW = 2;
+               $OUT = '';
                while ($content = SQL_FETCHARRAY($result)) {
-                       // Prepare data for the row template
-                       $content['sw'] = $SW;
-
                        // Load row template and switch color
                        $OUT .= loadTemplate('admin_config_email_row', true, $content);
-                       $SW = 3 - $SW;
                } // END - while
 
                // Free memory