Commit 4f7b9f55 authored by bugreport%peshkin.net's avatar bugreport%peshkin.net

Bug 226477: Fix undefined method call in Bugzilla::User->in_group

r=timeless,a=justdave
parent ce5d97ef
......@@ -206,7 +206,7 @@ sub in_group {
my $dbh = Bugzilla->dbh;
my $res = $dbh->selectrow(q{SELECT 1
my ($res) = $dbh->selectrow_array(q{SELECT 1
FROM groups, user_group_map
WHERE groups.id=user_group_map.group_id
AND user_group_map.user_id=?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment