From: bugreport%peshkin.net <> Date: Wed, 21 Sep 2005 03:56:38 +0000 (+0000) Subject: Bug 309018: Fix fatal error in whining at groups X-Git-Tag: bugzilla-2.21.1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ec82863cc33538d88416c7a467ca9fa8b0319ae;p=thirdparty%2Fbugzilla.git Bug 309018: Fix fatal error in whining at groups patch by Joel Peshkin r=lpsolit, a=justdave --- diff --git a/whine.pl b/whine.pl index 068774ca0f..f24db855df 100755 --- a/whine.pl +++ b/whine.pl @@ -275,8 +275,8 @@ sub get_next_event { $groupname, $owner); if ($group_id) { my $glist = join(',', - Bugzilla::User->flatten_group_membership( - $group_id)); + @{Bugzilla::User->flatten_group_membership( + $group_id)}); $sth = $dbh->prepare("SELECT user_id FROM " . "user_group_map " . "WHERE group_id IN ($glist)");