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 /process_bug.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 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index a62320fd2..a0ed799c3 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -91,10 +91,10 @@ scalar(@idlist) || ThrowUserError("no_bugs_chosen"); # do a match on the fields if applicable &Bugzilla::User::match_field({ - 'qa_contact' => { 'type' => 'single' }, - 'newcc' => { 'type' => 'multi' }, - 'assigned_to' => { 'type' => 'single' }, - '^requestee-(\d+)$' => { 'type' => 'single' }, + 'qa_contact' => { 'type' => 'single' }, + 'newcc' => { 'type' => 'multi' }, + 'assigned_to' => { 'type' => 'single' }, + '^requestee(_type)?-(\d+)$' => { 'type' => 'single' }, }); # If we are duping bugs, let's also make sure that we can change |