Index: branches/REL1_17/phase3/includes/specials/SpecialUnusedcategories.php |
— | — | @@ -49,6 +49,13 @@ |
50 | 50 | AND page_is_redirect = 0"; |
51 | 51 | } |
52 | 52 | |
| 53 | + /** |
| 54 | + * A should come before Z (bug 30907) |
| 55 | + */ |
| 56 | + function sortDescending() { |
| 57 | + return false; |
| 58 | + } |
| 59 | + |
53 | 60 | function formatResult( $skin, $result ) { |
54 | 61 | $title = Title::makeTitle( NS_CATEGORY, $result->title ); |
55 | 62 | return $skin->link( $title, $title->getText() ); |
Property changes on: branches/REL1_17/phase3/includes/specials/SpecialUnusedcategories.php |
___________________________________________________________________ |
Added: svn:mergeinfo |
56 | 63 | Merged /branches/wmf-deployment/includes/specials/SpecialUnusedcategories.php:r53381,56967 |
57 | 64 | Merged /branches/REL1_15/phase3/includes/specials/SpecialUnusedcategories.php:r51646 |
58 | 65 | Merged /branches/sqlite/includes/specials/SpecialUnusedcategories.php:r58211-58321 |
59 | 66 | Merged /trunk/phase3/includes/specials/SpecialUnusedcategories.php:r97151 |
Index: branches/REL1_17/phase3/RELEASE-NOTES |
— | — | @@ -61,6 +61,7 @@ |
62 | 62 | instead require() for included extensions. |
63 | 63 | * (bug 26486) ResourceLoader modules with paths to nonexistent files cause PHP |
64 | 64 | warnings/notices to be thrown |
| 65 | +* (bug 30907) Special:Unusedcategories should sort ascendingly. |
65 | 66 | |
66 | 67 | === Changes since 1.17.0rc1 === |
67 | 68 | |