summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Keyword.pm
diff options
context:
space:
mode:
authormkanat%kerio.com <>2006-03-09 09:09:51 +0100
committermkanat%kerio.com <>2006-03-09 09:09:51 +0100
commitf4ec7d28bc7b7a21cf0d1decf8f3831d0486496b (patch)
tree3491e115c00c1aed5d149cc3479890144debc7a2 /Bugzilla/Keyword.pm
parenta2eca825a00b33912ec60f797d1112115772ec30 (diff)
downloadbugzilla-f4ec7d28bc7b7a21cf0d1decf8f3831d0486496b.tar.gz
bugzilla-f4ec7d28bc7b7a21cf0d1decf8f3831d0486496b.tar.xz
Fix a checkin nit on Bug 328638 that I forgot to fix on the original checkin.
Diffstat (limited to 'Bugzilla/Keyword.pm')
-rw-r--r--Bugzilla/Keyword.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Keyword.pm b/Bugzilla/Keyword.pm
index b35827288..fb2e3ae66 100644
--- a/Bugzilla/Keyword.pm
+++ b/Bugzilla/Keyword.pm
@@ -92,7 +92,7 @@ sub new_from_list {
}
$keywords = $dbh->selectall_arrayref(
"SELECT $columns FROM keyworddefs WHERE id IN ("
- . join(',', @detainted_ids) . ")", {Slice=>{}}) || [];
+ . join(',', @detainted_ids) . ")", {Slice=>{}});
} else {
ThrowCodeError('bad_arg',
{argument => 'id_list',