summaryrefslogtreecommitdiffstats
path: root/post_bug.cgi
diff options
context:
space:
mode:
authormkanat%kerio.com <>2006-04-08 19:56:55 +0200
committermkanat%kerio.com <>2006-04-08 19:56:55 +0200
commitc516741d33135d57751673302c3b0c863454cd6e (patch)
tree8c06e570b001732572321b61bda5f50bb098cb32 /post_bug.cgi
parentdfa63026620220b2f252291ae41c6bd7e966e0a9 (diff)
downloadbugzilla-c516741d33135d57751673302c3b0c863454cd6e.tar.gz
bugzilla-c516741d33135d57751673302c3b0c863454cd6e.tar.xz
Bug 333195: Cannot post a bug with keywords in it
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=wicked, a=justdave
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-xpost_bug.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi
index ec684b247..14763151a 100755
--- a/post_bug.cgi
+++ b/post_bug.cgi
@@ -496,7 +496,7 @@ if (UserInGroup("editbugs")) {
if (@keywordlist) {
# Make sure that we have the correct case for the kw
my $kw_ids = join(', ', @keywordlist);
- my $list = $dbh->selectcol_arrayref(q{
+ my $list = $dbh->selectcol_arrayref(qq{
SELECT name
FROM keyworddefs
WHERE id IN ($kw_ids)});