From 26a5920ad57b8038e36ba8adf17febd4dbc8a105 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Fri, 5 Feb 2010 23:04:41 +0100 Subject: Bug 544506: Bugzilla->input_params is undefined when calling Bugzilla.version and other methods taking no argument r/a=mkanat --- Bugzilla/WebService/Server/XMLRPC.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') 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; } -- cgit v1.2.3-24-g4f1b