From: mkanat%kerio.com <> Date: Thu, 9 Mar 2006 08:09:51 +0000 (+0000) Subject: Fix a checkin nit on Bug 328638 that I forgot to fix on the original checkin. X-Git-Tag: bugzilla-2.23.1~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4ec7d28bc7b7a21cf0d1decf8f3831d0486496b;p=thirdparty%2Fbugzilla.git Fix a checkin nit on Bug 328638 that I forgot to fix on the original checkin. --- diff --git a/Bugzilla/Keyword.pm b/Bugzilla/Keyword.pm index b35827288b..fb2e3ae66a 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',