diff options
author | myk%mozilla.org <> | 2002-11-11 21:36:22 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2002-11-11 21:36:22 +0100 |
commit | be1bdf3972e95f617138f631e466875e7bd0b34c (patch) | |
tree | a492074d6c349d3cee371ca32276423d40e8d810 /attachment.cgi | |
parent | 4676125715f42c619bd34c69ac08daa3d3ace361 (diff) | |
download | bugzilla-be1bdf3972e95f617138f631e466875e7bd0b34c.tar.gz bugzilla-be1bdf3972e95f617138f631e466875e7bd0b34c.tar.xz |
Fix for bug 179334: updates the setter consistently. also fixes numerous other bugs in the RT code.
r=bbaetz
a=myk
Diffstat (limited to 'attachment.cgi')
-rwxr-xr-x | attachment.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/attachment.cgi b/attachment.cgi index 04b86dc33..4c5737156 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -110,7 +110,8 @@ elsif ($action eq "update") validateContentType() unless $::FORM{'ispatch'}; validateIsObsolete(); validatePrivate(); - Bugzilla::User::match_field({ '^requestee-(\d+)$' => { 'type' => 'single' } }); + Bugzilla::User::match_field({ '^requestee(_type)?-(\d+)$' => + { 'type' => 'single' } }); Bugzilla::Flag::validate(\%::FORM); Bugzilla::FlagType::validate(\%::FORM); update(); |