Skip to content

Commit

Permalink
Changed the order of the icons that indicate sorting order to conform…
Browse files Browse the repository at this point in the history
… to the UI convention used in most software:

up arrow indicates ascending sorting order
down arrow indicated descending sorting order

Modified Files:
	core/icon_api.php


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1793 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
beerfrick committed Jan 30, 2003
1 parent 645d80d commit c529b2f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/icon_api.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: icon_api.php,v 1.5 2003-01-03 03:24:25 jfitzell Exp $
# $Id: icon_api.php,v 1.6 2003-01-30 15:01:03 beerfrick Exp $
# --------------------------------------------------------

###########################################################################
Expand All @@ -26,10 +26,10 @@
IMMEDIATE => 'priority_3.gif'
);
# --------------------
# Sort direction to icon mapping (actually backwards is more correct)
# Sort direction to icon mapping
$g_sort_icon_arr = array (
ASC => 'down.gif',
DESC => 'up.gif'
ASC => 'up.gif',
DESC => 'down.gif'
);
# --------------------
# Read status to icon mapping
Expand Down Expand Up @@ -94,4 +94,4 @@ function print_unread_icon( $p_unread=READ ) {
}
}
# --------------------
?>
?>

0 comments on commit c529b2f

Please sign in to comment.