fix manage users in group not listing users
This commit is contained in:
parent
42586252e5
commit
e35ce19e5d
2 changed files with 2 additions and 1 deletions
|
|
@ -3,6 +3,7 @@
|
||||||
- Remove Help TOC links
|
- Remove Help TOC links
|
||||||
- Fix hover help for collaboration system rich editor
|
- Fix hover help for collaboration system rich editor
|
||||||
- Fix using statements other than SELECT in SQL Reports
|
- Fix using statements other than SELECT in SQL Reports
|
||||||
|
- Fix manage users in group not displaying user list
|
||||||
|
|
||||||
7.4.4
|
7.4.4
|
||||||
- fix: Changing group detail adds number to group name
|
- fix: Changing group detail adds number to group name
|
||||||
|
|
|
||||||
|
|
@ -192,7 +192,7 @@ sub doUserSearch {
|
||||||
$p->setDataByQuery($sql, undef, undef, [$keyword, $keyword, $keyword, $keyword, $keyword]);
|
$p->setDataByQuery($sql, undef, undef, [$keyword, $keyword, $keyword, $keyword, $keyword]);
|
||||||
return $p;
|
return $p;
|
||||||
} else {
|
} else {
|
||||||
my $sth = $session->db->read($sql);
|
my $sth = $session->dbSlave->read($sql, [$keyword, $keyword, $keyword, $keyword, $keyword]);
|
||||||
return $sth;
|
return $sth;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue