diff --git a/lib/WebGUI/Operation/Group.pm b/lib/WebGUI/Operation/Group.pm
index 1c6a204a3..d5815534c 100644
--- a/lib/WebGUI/Operation/Group.pm
+++ b/lib/WebGUI/Operation/Group.pm
@@ -447,14 +447,15 @@ sub www_manageUsersInGroupSecondary {
return WebGUI::Privilege::adminOnly() unless _hasSecondaryPrivilege($session{form}{gid});
my ($output, $sth, %hash);
tie %hash, 'Tie::CPHash';
- $output = '
'.WebGUI::International::get(88).'
';
+ my $group = WebGUI::Group->new($session{form}{gid});
+ $output = ''.WebGUI::International::get(88).' '.$group->name.'
';
my $f = WebGUI::HTMLForm->new;
$f->hidden("gid",$session{form}{gid});
$f->hidden("op","addUsersToGroupSecondarySave");
my $existingUsers = WebGUI::Grouping::getUsersInGroup($session{form}{gid});
push(@{$existingUsers},"1");
push(@{$existingUsers},"3");
- my $users = WebGUI::SQL->buildHashRef("select userId,username from users where status='Active' and userId not in (".join(",",@{$existingUsers}).")");
+ my $users = WebGUI::SQL->buildHashRef("select userId,username from users where status='Active' and userId not in (".join(",",@{$existingUsers}).") order by username");
$f->selectList(
-name=>"users",
-label=>WebGUI::International::get(976),
diff --git a/lib/WebGUI/Operation/Statistics.pm b/lib/WebGUI/Operation/Statistics.pm
index 20923cb28..43d4c014b 100644
--- a/lib/WebGUI/Operation/Statistics.pm
+++ b/lib/WebGUI/Operation/Statistics.pm
@@ -184,7 +184,7 @@ sub www_viewStatistics {
$output .= '| '.$data.' |
';
($data) = WebGUI::SQL->quickArray("select count(*) from template where templateId>1000");
$output .= '| '.$data.' |
';
- ($data) = WebGUI::SQL->quickArray("select count(*) from collateral where collateralId>1000");
+ ($data) = WebGUI::SQL->quickArray("select count(*) from collateral");
$output .= '| '.$data.' |
';
($data) = WebGUI::SQL->quickArray("select count(*) from userSession");
$output .= '| '.$data.' |
';