r97197 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r97196‎ | r97197 | r97198 >
Date:20:22, 15 September 2011
Author:hashar
Status:ok (Comments)
Tags:
Comment:
MFT to REL1_17
r97151 (bug 30907) Special:Unusedcategories should sort ascendingly (A-Z not Z-A).
Modified paths:
  • /branches/REL1_17/phase3/RELEASE-NOTES (modified) (history)
  • /branches/REL1_17/phase3/includes/specials/SpecialUnusedcategories.php (modified) (history)

Diff [purge]

Index: branches/REL1_17/phase3/includes/specials/SpecialUnusedcategories.php
@@ -49,6 +49,13 @@
5050 AND page_is_redirect = 0";
5151 }
5252
 53+ /**
 54+ * A should come before Z (bug 30907)
 55+ */
 56+ function sortDescending() {
 57+ return false;
 58+ }
 59+
5360 function formatResult( $skin, $result ) {
5461 $title = Title::makeTitle( NS_CATEGORY, $result->title );
5562 return $skin->link( $title, $title->getText() );
Property changes on: branches/REL1_17/phase3/includes/specials/SpecialUnusedcategories.php
___________________________________________________________________
Added: svn:mergeinfo
5663 Merged /branches/wmf-deployment/includes/specials/SpecialUnusedcategories.php:r53381,56967
5764 Merged /branches/REL1_15/phase3/includes/specials/SpecialUnusedcategories.php:r51646
5865 Merged /branches/sqlite/includes/specials/SpecialUnusedcategories.php:r58211-58321
5966 Merged /trunk/phase3/includes/specials/SpecialUnusedcategories.php:r97151
Index: branches/REL1_17/phase3/RELEASE-NOTES
@@ -61,6 +61,7 @@
6262 instead require() for included extensions.
6363 * (bug 26486) ResourceLoader modules with paths to nonexistent files cause PHP
6464 warnings/notices to be thrown
 65+* (bug 30907) Special:Unusedcategories should sort ascendingly.
6566
6667 === Changes since 1.17.0rc1 ===
6768

Follow-up revisions

RevisionCommit summaryAuthorDate
r97198MFT to REL1_18...hashar20:25, 15 September 2011
r102387clean RN 1.19 of bugs merged in 1.18...hashar10:54, 8 November 2011

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r97151(bug 30907) Special:Unusedcategories should sort ascendingly (A-Z not Z-A).bawolff13:47, 15 September 2011

Comments

#Comment by Hashar (talk | contribs)   20:25, 15 September 2011

Merged back to stables: 1.17.1 : r97197 1.18.0 : r97198

Status & tagging log