diff options
author | reed%reedloden.com <> | 2006-12-27 00:46:04 +0000 |
---|---|---|
committer | reed%reedloden.com <> | 2006-12-27 00:46:04 +0000 |
commit | 00b5a1191a9770ed76a915ca0c0ae1838d8c9848 (patch) | |
tree | 59d0f03ed9a4d170c6e2d5888cb4d7bbd97d3ec8 /userprefs.cgi | |
parent | Bug 364169 - "There is a "show votes for this bug" link when the bug has no v... (diff) | |
download | bugzilla-00b5a1191a9770ed76a915ca0c0ae1838d8c9848.tar.gz bugzilla-00b5a1191a9770ed76a915ca0c0ae1838d8c9848.tar.bz2 bugzilla-00b5a1191a9770ed76a915ca0c0ae1838d8c9848.zip |
Bug 364920 - "Watcher list should be sorted alphabetically" [p=reed r=LpSolit a=justdave]
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-x | userprefs.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/userprefs.cgi b/userprefs.cgi index 555b017a8..14746ada1 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -201,7 +201,8 @@ sub DoEmail { my $watched_ref = $dbh->selectcol_arrayref( "SELECT profiles.login_name FROM watch INNER JOIN profiles" . " ON watch.watched = profiles.userid" . - " WHERE watcher = ?", + " WHERE watcher = ?" . + " ORDER BY profiles.login_name", undef, $user->id); $vars->{'watchedusers'} = $watched_ref; |