]> git.mxchange.org Git - mailer.git/commitdiff
Fixed sorting
authorRoland Häder <roland@mxchange.org>
Thu, 17 Jan 2013 01:57:55 +0000 (01:57 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 17 Jan 2013 01:57:55 +0000 (01:57 +0000)
inc/modules/admin/what-stats_mods.php

index e274aae5e3e66945d3d164465962a7c78b872e27..07ac5d2177f70d172fba0d70f5fa81d65392bb59 100644 (file)
@@ -49,7 +49,7 @@ if ((getRequestElement('mod') == 'index') || (getRequestElement('mod') == 'login
        $mod = mapModuleToTable(getRequestElement('mod'));
 
        // 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",
+       $result = SQL_QUERY_ESC("SELECT `action`, `title`, `counter` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what` != '' AND `what` IS NOT NULL ORDER BY `counter` DESC, `action` ASC, `sort` ASC",
                array($mod), __FILE__, __LINE__);
        $OUT = '';
        while ($content = SQL_FETCHARRAY($result)) {