From: Fran Rogers Date: Mon, 20 Oct 2008 06:14:08 +0000 (+0000) Subject: For consistency, make the DeletedContributions pager use (Latest | Earliest) instead... X-Git-Tag: 1.31.0-rc.0~44672 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=2df150266d0cd8f8e35031b26a98da3a19b25230;p=lhc%2Fweb%2Fwiklou.git For consistency, make the DeletedContributions pager use (Latest | Earliest) instead of (first | last) --- diff --git a/includes/specials/SpecialDeletedContributions.php b/includes/specials/SpecialDeletedContributions.php index 5cfe048a2d..97799870e3 100644 --- a/includes/specials/SpecialDeletedContributions.php +++ b/includes/specials/SpecialDeletedContributions.php @@ -68,8 +68,8 @@ class DeletedContribsPager extends IndexPager { $linkTexts = array( 'prev' => wfMsgHtml( 'pager-newer-n', $this->mLimit ), 'next' => wfMsgHtml( 'pager-older-n', $this->mLimit ), - 'first' => wfMsgHtml( 'page_first' ), - 'last' => wfMsgHtml( 'page_last' ) + 'first' => wfMsgHtml( 'histlast' ), + 'last' => wfMsgHtml( 'histfirst' ) ); $pagingLinks = $this->getPagingLinks( $linkTexts );