Skip to content

Commit

Permalink
Resolve issue #2637: tweak sort order in print_*_list functions (http…
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Fitzell committed Oct 22, 2002
1 parent cdf9686 commit bbdc152
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/print_api.php
Expand Up @@ -6,7 +6,7 @@
# See the files README and LICENSE for details

# --------------------------------------------------------
# $Id: print_api.php,v 1.24 2002-10-20 23:59:49 jfitzell Exp $
# $Id: print_api.php,v 1.25 2002-10-22 04:28:57 jfitzell Exp $
# --------------------------------------------------------

###########################################################################
Expand Down Expand Up @@ -233,7 +233,7 @@ function print_reporter_option_list( $p_user_id ) {
}
}

asort( $user_arr );
asort( $user_arr, SORT_STRING );
foreach ( $user_arr as $key => $val ) {
$v_id = $val[1];
$v_username = $val[0];
Expand Down Expand Up @@ -403,7 +403,7 @@ function print_assign_to_option_list( $p_user_id='' ) {
}
}

asort( $user_arr );
asort( $user_arr, SORT_STRING );
foreach ( $user_arr as $key => $val ) {
$v_id = $val[1];
$v_username = $val[0];
Expand Down

0 comments on commit bbdc152

Please sign in to comment.