r87286 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r87285
|
r87286
|
r87287
>
Date:
19:56, 2 May 2011
Author:
diebuche
Status:
ok
Tags:
Comment:
Switching arrows in Special:FileList to match the usual behaviour in MW.
Bug 18962
Modified paths:
/trunk/phase3/includes/Pager.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/Pager.php
—
—
@@ -829,13 +829,13 @@
830
830
# Prepare a link that goes in the other sort order
831
831
if ( $this->mDefaultDirection ) {
832
832
# Descending
833
- $image = 'Arr_u.png';
833
+ $image = 'Arr_d.png';
834
834
$query['asc'] = '1';
835
835
$query['desc'] = '';
836
836
$alt = htmlspecialchars( wfMsg( 'descending_abbrev' ) );
837
837
} else {
838
838
# Ascending
839
- $image = 'Arr_d.png';
839
+ $image = 'Arr_u.png';
840
840
$query['asc'] = '';
841
841
$query['desc'] = '1';
842
842
$alt = htmlspecialchars( wfMsg( 'ascending_abbrev' ) );
Status & tagging log
21:05, 7 June 2011
Brion VIBBER
(
talk
|
contribs
)
changed the
status
of r87286
[
removed:
new
added:
ok]