diff options
author | David Lawrence <dkl@mozilla.com> | 2014-05-12 14:39:23 -0400 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2014-05-12 14:40:47 -0400 |
commit | 52b113cc1a6a208744ec92ad1b2c91d463ff9202 (patch) | |
tree | f9b40aaf18ee98a0cc474f7aeb318db97edb6535 /Bugzilla/WebService/Server | |
parent | d694e688d2b129e6091ee5045066f09f4578f14e (diff) | |
download | bugs-52b113cc1a6a208744ec92ad1b2c91d463ff9202.tar bugs-52b113cc1a6a208744ec92ad1b2c91d463ff9202.tar.gz bugs-52b113cc1a6a208744ec92ad1b2c91d463ff9202.tar.bz2 bugs-52b113cc1a6a208744ec92ad1b2c91d463ff9202.tar.xz bugs-52b113cc1a6a208744ec92ad1b2c91d463ff9202.zip |
Backout of Bug 1001462 - Bug.search causes error when using simple token auth and specifying 'token' instead of 'Bugzilla_token'
Diffstat (limited to 'Bugzilla/WebService/Server')
-rw-r--r-- | Bugzilla/WebService/Server/XMLRPC.pm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm index 48ab27a5e..40c66a8f9 100644 --- a/Bugzilla/WebService/Server/XMLRPC.pm +++ b/Bugzilla/WebService/Server/XMLRPC.pm @@ -115,7 +115,6 @@ our @ISA = qw(XMLRPC::Deserializer); use Bugzilla::Error; use Bugzilla::WebService::Constants qw(XMLRPC_CONTENT_TYPE_WHITELIST); -use Bugzilla::WebService::Util qw(fix_credentials); use Scalar::Util qw(tainted); sub deserialize { @@ -139,11 +138,6 @@ sub deserialize { my $params = $som->paramsin; # This allows positional parameters for Testopia. $params = {} if ref $params ne 'HASH'; - - # Update the params to allow for several convenience key/values - # use for authentication - fix_credentials($params); - Bugzilla->input_params($params); return $som; } |