From: Leo Koppelkamm Date: Mon, 2 May 2011 19:56:28 +0000 (+0000) Subject: Switching arrows in Special:FileList to match the usual behaviour in MW. Bug 18962 X-Git-Tag: 1.31.0-rc.0~30447 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=9aa24fcb9f6f2855023e15b4f2a0ee600f4f0315;p=lhc%2Fweb%2Fwiklou.git Switching arrows in Special:FileList to match the usual behaviour in MW. Bug 18962 --- diff --git a/includes/Pager.php b/includes/Pager.php index 9028f0e06b..8eb6c7c705 100644 --- a/includes/Pager.php +++ b/includes/Pager.php @@ -829,13 +829,13 @@ abstract class TablePager extends IndexPager { # Prepare a link that goes in the other sort order if ( $this->mDefaultDirection ) { # Descending - $image = 'Arr_u.png'; + $image = 'Arr_d.png'; $query['asc'] = '1'; $query['desc'] = ''; $alt = htmlspecialchars( wfMsg( 'descending_abbrev' ) ); } else { # Ascending - $image = 'Arr_d.png'; + $image = 'Arr_u.png'; $query['asc'] = ''; $query['desc'] = '1'; $alt = htmlspecialchars( wfMsg( 'ascending_abbrev' ) );