* (bug 16712) Special:NewFiles updated to use "newer"/"older" paging messages for...
authorBrion Vibber <brion@users.mediawiki.org>
Sat, 20 Dec 2008 00:28:34 +0000 (00:28 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sat, 20 Dec 2008 00:28:34 +0000 (00:28 +0000)
RELEASE-NOTES
includes/specials/SpecialNewimages.php

index 0eda96b..85bfdfd 100644 (file)
@@ -433,6 +433,8 @@ The following extensions are migrated into MediaWiki 1.14:
 * (bug 15027) Internet domain names and IP addresses can now be indexed and
   searched sensibly with the default MySQL search backend.
 * (bug 11733) Fixed parameter validation in importTextFile.php
+* (bug 16712) Special:NewFiles updated to use "newer"/"older" paging messages
+  for clarity over "previous/next"
 
 === API changes in 1.14 ===
 
index 65d4f1d..575e37a 100644 (file)
@@ -177,12 +177,12 @@ function wfSpecialNewimages( $par, $specialPage ) {
 
 
        $opts = array( 'parsemag', 'escapenoentities' );
-       $prevLink = wfMsgExt( 'prevn', $opts, $wgLang->formatNum( $limit ) );
+       $prevLink = wfMsgExt( 'pager-newer-n', $opts, $wgLang->formatNum( $limit ) );
        if( $firstTimestamp && $firstTimestamp != $latestTimestamp ) {
                $prevLink = $sk->makeKnownLinkObj( $titleObj, $prevLink, 'from=' . $firstTimestamp . $botpar . $searchpar );
        }
 
-       $nextLink = wfMsgExt( 'nextn', $opts, $wgLang->formatNum( $limit ) );
+       $nextLink = wfMsgExt( 'pager-older-n', $opts, $wgLang->formatNum( $limit ) );
        if( $shownImages > $limit && $lastTimestamp ) {
                $nextLink = $sk->makeKnownLinkObj( $titleObj, $nextLink, 'until=' . $lastTimestamp.$botpar.$searchpar );
        }