]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-sponsor_infos.php
A lot code rewritten:
[mailer.git] / inc / modules / guest / what-sponsor_infos.php
index 420778fbb93a8e4d8997601ea08949a559eecb7e..a6d7246e9fa404a15545e7e909c79afaada31297 100644 (file)
@@ -64,12 +64,11 @@ ORDER BY m.sort ASC", __FILE__, __LINE__);
 
 if (SQL_NUMROWS($result_act) > 0) {
        // Load all actions
-       $OUT_ACT = ''; $SW = 2;
+       $OUT_ACT = '';
        while ($content = SQL_FETCHARRAY($result_act)) {
                // Prepare data for the row template
                // @TODO Rewritings: conv->conv_rate,name->conv_name in template
                $content = array(
-                       'sw'    => $SW,
                        'title' => $content['title'],
                        'conv'  => round($content['conv_rate']),
                        'name'  => $content['conv_name'],
@@ -77,22 +76,17 @@ if (SQL_NUMROWS($result_act) > 0) {
 
                // Load row template and switch color
                $OUT_ACT .= loadTemplate('guest_sponsor_act_row', true, $content);
-               $SW = 3 - $SW;
        } // END - while
 
        // Check for pay types
        $result_pay = SQL_QUERY('SELECT `pay_name`, `pay_rate`, `pay_min_count`, `pay_currency` FROM `{?_MYSQL_PREFIX?}_sponsor_paytypes` ORDER BY `pay_name` ASC', __FILE__, __LINE__);
        if (SQL_NUMROWS($result_pay) > 0) {
                // Load all pay types
-               $OUT_PAY = ''; $SW = 2;
+               $OUT_PAY = '';
                while ($content = SQL_FETCHARRAY($result_pay)) {
-                       // Prepare data for the row template
-                       $content['sw'] = $SW;
-
                        // Load row template and switch color
                        $OUT_PAY .= loadTemplate('guest_sponsor_pay_row', true, $content);
-                       $SW = 3 - $SW;
-               }
+               } // END - while
        } else {
                // No pay types setuped so far!
                $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', loadTemplate('admin_settings_saved', true, '{--SPONSOR_NO_ACTIONS_ACTIVATED--}'));