diff options
author | myk%mozilla.org <> | 2002-11-08 10:35:36 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2002-11-08 10:35:36 +0100 |
commit | 8f8766ab97ba1e4f55c0254e65131b5585c19a2e (patch) | |
tree | 285bf5a43424996e491779c9ac6d9004717ee4c3 /attachment.cgi | |
parent | 34c5c3b6bed3d8640d8671844e0cf0c0830c9afc (diff) | |
download | bugzilla-8f8766ab97ba1e4f55c0254e65131b5585c19a2e.tar.gz bugzilla-8f8766ab97ba1e4f55c0254e65131b5585c19a2e.tar.xz |
Fix for bug 172518: makes the request tracker use the generic user matching code
r=not_erik,joel
a=justdave
Diffstat (limited to 'attachment.cgi')
-rwxr-xr-x | attachment.cgi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/attachment.cgi b/attachment.cgi index 6e9379af1..971968b3e 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -44,6 +44,7 @@ require "CGI.pl"; # Use these modules to handle flags. use Bugzilla::Flag; use Bugzilla::FlagType; +use Bugzilla::User; # Establish a connection to the database backend. ConnectToDatabase(); @@ -109,6 +110,7 @@ elsif ($action eq "update") validateContentType() unless $::FORM{'ispatch'}; validateIsObsolete(); validatePrivate(); + Bugzilla::User::match_field({ '^requestee-(\d+)$' => { 'type' => 'single' } }); Bugzilla::Flag::validate(\%::FORM); Bugzilla::FlagType::validate(\%::FORM); update(); |