Fixed bug 596313
This commit is contained in:
parent
6426950192
commit
33e8b1fa7d
1 changed files with 2 additions and 2 deletions
|
|
@ -54,7 +54,7 @@ sub addEntry {
|
||||||
if ($groupId ne "") {
|
if ($groupId ne "") {
|
||||||
@users = WebGUI::SQL->buildArray("select userId from groupings where groupId=$groupId");
|
@users = WebGUI::SQL->buildArray("select userId from groupings where groupId=$groupId");
|
||||||
}
|
}
|
||||||
@users = ($userId,@users);
|
@users = ($userId,@users) if ($userId ne "");
|
||||||
foreach $user (@users) {
|
foreach $user (@users) {
|
||||||
$u = WebGUI::User->new($user);
|
$u = WebGUI::User->new($user);
|
||||||
if ($u->userId ne "") {
|
if ($u->userId ne "") {
|
||||||
|
|
@ -83,7 +83,7 @@ sub addInternationalizedEntry {
|
||||||
if ($groupId ne "") {
|
if ($groupId ne "") {
|
||||||
@users = WebGUI::SQL->buildArray("select userId from groupings where groupId=$groupId");
|
@users = WebGUI::SQL->buildArray("select userId from groupings where groupId=$groupId");
|
||||||
}
|
}
|
||||||
@users = ($userId,@users);
|
@users = ($userId,@users) if ($userId ne "");
|
||||||
foreach $user (@users) {
|
foreach $user (@users) {
|
||||||
$u = WebGUI::User->new($user);
|
$u = WebGUI::User->new($user);
|
||||||
if ($u->userId ne "") {
|
if ($u->userId ne "") {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue