From: Brion Vibber Date: Wed, 19 Nov 2003 10:13:14 +0000 (+0000) Subject: Fix sort for proper index X-Git-Tag: 1.1.0~129 X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=commitdiff_plain;h=af3e1238d70e4733362fdd22c20eef0938096da4;p=lhc%2Fweb%2Fwiklou.git Fix sort for proper index --- diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index d58c97ee90..6c8a24b254 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -19,7 +19,7 @@ function wfSpecialUndelete( $par ) } # List undeletable articles - $sql = "SELECT ar_namespace,ar_title, COUNT(*) AS count FROM archive GROUP BY ar_namespace,ar_title ORDER BY ar_title"; + $sql = "SELECT ar_namespace,ar_title, COUNT(*) AS count FROM archive GROUP BY ar_namespace,ar_title ORDER BY ar_namespace,ar_title"; $res = wfQuery( $sql, DB_READ ); $wgOut->setPagetitle( wfMsg( "undeletepage" ) );