Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -91,6 +91,7 @@ |
92 | 92 | importing a new revision into it |
93 | 93 | * Allowing moving the associated talk pages of subpages even if the base page |
94 | 94 | has no subpage. |
| 95 | +* (bug 30907) Special:Unusedcategories should sort ascendingly. |
95 | 96 | |
96 | 97 | === API changes in 1.19 === |
97 | 98 | * (bug 19838) siprop=interwikimap can now use the interwiki cache. |
Index: trunk/phase3/includes/specials/SpecialUnusedcategories.php |
— | — | @@ -50,6 +50,13 @@ |
51 | 51 | ); |
52 | 52 | } |
53 | 53 | |
| 54 | + /** |
| 55 | + * A should come before Z (bug 30907) |
| 56 | + */ |
| 57 | + function sortDescending() { |
| 58 | + return false; |
| 59 | + } |
| 60 | + |
54 | 61 | function formatResult( $skin, $result ) { |
55 | 62 | $title = Title::makeTitle( NS_CATEGORY, $result->title ); |
56 | 63 | return $skin->link( $title, $title->getText() ); |