Users are sorted alphabetically when adding resources to projects
This commit is contained in:
parent
08f6a86602
commit
2fcdf59b2f
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ sub www_editProject {
|
|||
);
|
||||
|
||||
tie my %users, "Tie::IxHash";
|
||||
%users = $db->buildHash("select userId,username from users where userId not in ('1','3')");
|
||||
%users = $db->buildHash("select userId,username from users where userId not in ('1','3') order by username");
|
||||
my $resources = $db->buildArrayRef("select resourceId from TT_projectResourceList where projectId=".$db->quote($projectId));
|
||||
|
||||
$f->selectList(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue