]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/overview-inc.php
A lot code rewritten:
[mailer.git] / inc / modules / admin / overview-inc.php
index 79df8a21e32afd70dac1afa639d405af2b96280d..2a02b281d66bd00b8fa1df77085b2fb63ebdaf8a 100644 (file)
@@ -132,7 +132,7 @@ ORDER BY
 function outputSeletectedTasks ($postData, $result_tasks) {
        if ((isset($postData['assign'])) && (count($postData['sel']) > 0)) {
                // Assign / do tasks
-               $OUT = ''; $SW = 2;
+               $OUT = '';
                foreach ($postData['sel'] as $id => $sel) {
                        $result_task = SQL_QUERY_ESC("SELECT
        `id`, `userid`, `task_type`, `subject`, `text`, `task_created`, `status`, `assigned_admin`
@@ -263,7 +263,6 @@ LIMIT 1",
 
                                // Prepare array for the template
                                $content = array(
-                                       'sw'           => $SW,
                                        'subject'      => $taskData['subject'],
                                        'add'          => $add,
                                        'text'         => $taskData['text'],
@@ -394,9 +393,6 @@ LIMIT 1",
 
                        // Free result
                        SQL_FREERESULT($result_task);
-
-                       // Switch colors
-                       $SW = 3 - $SW;
                } // END - foreach
 
                // Load final template
@@ -427,7 +423,7 @@ LIMIT 1",
                } // END - if
 
                // There are uncompleted jobs!
-               $OUT = ''; $SW = 2;
+               $OUT = '';
                while ($content = SQL_FETCHARRAY($result_tasks)) {
                        // Init infos
                        $content['infos'] = '';
@@ -452,7 +448,6 @@ LIMIT 1",
                        }
 
                        // Add/translate some content
-                       $content['sw']           = $SW;
                        $content['task_created'] = generateDateTime($content['task_created'], 2);
 
                        // Do we have extension task?
@@ -463,9 +458,6 @@ LIMIT 1",
                                // Load default row template
                                $OUT .= loadTemplate('admin_overview_list_rows', true, $content);
                        }
-
-                       // Switch color
-                       $SW = 3 - $SW;
                } // END - while
 
                // Free memory