]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_network_params.php
A lot code rewritten:
[mailer.git] / inc / modules / admin / what-list_network_params.php
index a09cae196ea70d96ee498d3021c963647f6e6fb5..5946800572487e30b88fee9da764c01222dccd7c 100644 (file)
@@ -100,11 +100,8 @@ ORDER BY
        // Do we have entries?
        if (SQL_NUMROWS($result) > 0) {
                // List all entries
-               $OUT = ''; $SW = 2;
+               $OUT = '';
                while ($row = SQL_FETCHARRAY($result)) {
-                       // Add color switching
-                       $row['sw'] = $SW;
-
                        // Add it to network if the type matches selected
                        if ($row['network_type_id'] == postRequestParameter('network_type_id')) {
                                // Matches, then add it for disabling this entry
@@ -116,7 +113,6 @@ ORDER BY
 
                        // Add row template and switch color
                        $OUT .= loadTemplate('admin_list_network_params_row', true, $row);
-                       $SW = 3 - $SW;
                } // END - while
 
                // Prepare data for template