]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-stats_mods.php
Typo fixed :-(
[mailer.git] / inc / modules / admin / what-stats_mods.php
index a2e5a685965f2fed0658fbca689273a7c60b5f68..01a593b100fc7d80f7c3327d55b00c6003b81b7a 100644 (file)
@@ -53,16 +53,10 @@ if ((getRequestParameter('mod') == 'index') || (getRequestParameter('mod') == 'l
        // Load module's detail statistic
        $result = SQL_QUERY_ESC("SELECT `action`, `title`, `counter` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what` != '' AND `what` IS NOT NULL ORDER BY `counter` DESC",
                array($mod), __FILE__, __LINE__);
-       $OUT = ''; $SW = 2;
+       $OUT = '';
        while ($content = SQL_FETCHARRAY($result)) {
-               // Add color switch
-               $content['sw'] = $SW;
-
                // Load row template
                $OUT .= loadTemplate('admin_mods_stats2_row', true, $content);
-
-               // Switch colors
-               $SW = 3 - $SW;
        } // END - while
 
        // Free memory
@@ -73,16 +67,13 @@ if ((getRequestParameter('mod') == 'index') || (getRequestParameter('mod') == 'l
 } else {
        // Load module statics
        $result = SQL_QUERY("SELECT `module`, `title`, `clicks` FROM `{?_MYSQL_PREFIX?}_mod_reg` ORDER BY `clicks` DESC, `module` ASC", __FILE__, __LINE__);
-       $OUT = ''; $SW = 2;
+       $OUT = '';
        while ($content = SQL_FETCHARRAY($result)) {
                if (($content['module'] == 'index') || ($content['module'] == 'login')) {
                        // Add link to detail statistics
                        $content['module'] = '<a href="{%url=modules.php?module=admin&amp;what=stats_mods&amp;mod=' . $content['module'] . '%}">' . $content['module'] . '</a>';
                } // END - if
 
-               // Add color switch
-               $content['sw'] = $SW;
-
                // Load row template
                $OUT .= loadTemplate('admin_mods_stats_row', true, $content);
        } // END - while