Code style changed, ext-user continued:
[mailer.git] / inc / modules / admin / what-stats_mods.php
index 8c5ae5b1acbba04f0482d9ddef2e6cd92258223c..e274aae5e3e66945d3d164465962a7c78b872e27 100644 (file)
@@ -54,14 +54,14 @@ if ((getRequestElement('mod') == 'index') || (getRequestElement('mod') == 'login
        $OUT = '';
        while ($content = SQL_FETCHARRAY($result)) {
                // Load row template
-               $OUT .= loadTemplate('admin_list_mods_stats2_row', true, $content);
+               $OUT .= loadTemplate('admin_list_mods_stats2_row', TRUE, $content);
        } // END - while
 
        // Free memory
        SQL_FREERESULT($result);
 
        // Load final template
-       loadTemplate('admin_list_mods_stats2', false, $OUT);
+       loadTemplate('admin_list_mods_stats2', FALSE, $OUT);
 } else {
        // Load module statics
        $result = SQL_QUERY("SELECT `module`, `title`, `clicks` FROM `{?_MYSQL_PREFIX?}_mod_reg` ORDER BY `clicks` DESC,`module` ASC", __FILE__, __LINE__);
@@ -73,14 +73,14 @@ if ((getRequestElement('mod') == 'index') || (getRequestElement('mod') == 'login
                } // END - if
 
                // Load row template
-               $OUT .= loadTemplate('admin_list_mods_stats_row', true, $content);
+               $OUT .= loadTemplate('admin_list_mods_stats_row', TRUE, $content);
        } // END - while
 
        // Free memory
        SQL_FREERESULT($result);
 
        // Load final template
-       loadTemplate('admin_list_mods_stats', false, $OUT);
+       loadTemplate('admin_list_mods_stats', FALSE, $OUT);
 }
 
 // [EOF]