diff options
author | lpsolit%gmail.com <> | 2005-04-08 08:37:35 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-04-08 08:37:35 +0200 |
commit | 0ca4c4c49583b2dc680ace8ac9b7c80ea62d7f37 (patch) | |
tree | 44701b14670822af4b24a6f3628d447d72efb667 /post_bug.cgi | |
parent | 004d0c1cf93ac47317b490f83523c799f8651afd (diff) | |
download | bugzilla-0ca4c4c49583b2dc680ace8ac9b7c80ea62d7f37.tar.gz bugzilla-0ca4c4c49583b2dc680ace8ac9b7c80ea62d7f37.tar.xz |
Bug 238878: Make hidden-fields template, User Matching and Flags use direct CGI instead of [% form.foo %] - Patch by Teemu Mannermaa <wicked@etlicon.fi> r=LpSolit a=justdave
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 7f05dc7bc..84a9fd9df 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -60,7 +60,7 @@ my $dbh = Bugzilla->dbh; # do a match on the fields if applicable -&Bugzilla::User::match_field ({ +&Bugzilla::User::match_field ($cgi, { 'cc' => { 'type' => 'multi' }, 'assigned_to' => { 'type' => 'single' }, 'qa_contact' => { 'type' => 'single' }, |