From 9aa24fcb9f6f2855023e15b4f2a0ee600f4f0315 Mon Sep 17 00:00:00 2001 From: Leo Koppelkamm Date: Mon, 2 May 2011 19:56:28 +0000 Subject: [PATCH] Switching arrows in Special:FileList to match the usual behaviour in MW. Bug 18962 --- includes/Pager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' ) ); -- 2.20.1