summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/Server/XMLRPC.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-02-05 23:04:41 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2010-02-05 23:04:41 +0100
commit26a5920ad57b8038e36ba8adf17febd4dbc8a105 (patch)
tree1b6fa1c89c244a19b1e3857e87723853a6387eae /Bugzilla/WebService/Server/XMLRPC.pm
parentc6ed39a5865c67088bc7cebdc9939bddd08a1074 (diff)
downloadbugzilla-26a5920ad57b8038e36ba8adf17febd4dbc8a105.tar.gz
bugzilla-26a5920ad57b8038e36ba8adf17febd4dbc8a105.tar.xz
Bug 544506: Bugzilla->input_params is undefined when calling Bugzilla.version and other methods taking no argument
r/a=mkanat
Diffstat (limited to 'Bugzilla/WebService/Server/XMLRPC.pm')
-rw-r--r--Bugzilla/WebService/Server/XMLRPC.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm
index 967235262..f06f3081c 100644
--- a/Bugzilla/WebService/Server/XMLRPC.pm
+++ b/Bugzilla/WebService/Server/XMLRPC.pm
@@ -78,7 +78,7 @@ sub deserialize {
$som->{_bz_do_taint} = 1;
}
bless $som, 'Bugzilla::XMLRPC::SOM';
- Bugzilla->input_params($som->paramsin);
+ Bugzilla->input_params($som->paramsin || {});
return $som;
}