diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-02-01 13:11:53 -0800 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-02-01 13:11:53 -0800 |
commit | db2e681e87ad1d15bc0c8f8ef08e222da7ea97c1 (patch) | |
tree | 860c86dcc050fdafc251468b645cf7a4d3a0325a /editcomponents.cgi | |
parent | 2502c9ffb6687ab821ba09096f3f69ca17ebb42f (diff) | |
download | bugs-db2e681e87ad1d15bc0c8f8ef08e222da7ea97c1.tar bugs-db2e681e87ad1d15bc0c8f8ef08e222da7ea97c1.tar.gz bugs-db2e681e87ad1d15bc0c8f8ef08e222da7ea97c1.tar.bz2 bugs-db2e681e87ad1d15bc0c8f8ef08e222da7ea97c1.tar.xz bugs-db2e681e87ad1d15bc0c8f8ef08e222da7ea97c1.zip |
Bug 534057: Auto-completion no longer works in email_in.pl
Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'editcomponents.cgi')
-rwxr-xr-x | editcomponents.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi index c550f0d8c..70afd9c9f 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -118,7 +118,7 @@ if ($action eq 'add') { if ($action eq 'new') { check_token_data($token, 'add_component'); # Do the user matching - Bugzilla::User::match_field ($cgi, { + Bugzilla::User::match_field ({ 'initialowner' => { 'type' => 'single' }, 'initialqacontact' => { 'type' => 'single' }, 'initialcc' => { 'type' => 'multi' }, @@ -219,7 +219,7 @@ if ($action eq 'edit') { if ($action eq 'update') { check_token_data($token, 'edit_component'); # Do the user matching - Bugzilla::User::match_field ($cgi, { + Bugzilla::User::match_field ({ 'initialowner' => { 'type' => 'single' }, 'initialqacontact' => { 'type' => 'single' }, 'initialcc' => { 'type' => 'multi' }, |