From: Max Kanat-Alexander Date: Wed, 10 Mar 2010 20:53:01 +0000 (-0800) Subject: Bug 551199: The Bug.search WebService function was throwing an error about X-Git-Tag: bugzilla-3.6~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1836d07b82fef40194769642e4a5268c9076c3f;p=thirdparty%2Fbugzilla.git Bug 551199: The Bug.search WebService function was throwing an error about datetime_format_inbound not being found r=dkl, a=mkanat --- diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm index a492266c63..1a574aa1ed 100644 --- a/Bugzilla/WebService/Server/XMLRPC.pm +++ b/Bugzilla/WebService/Server/XMLRPC.pm @@ -111,7 +111,7 @@ sub decode_value { # pass 'Z' specifier to datetime_from to force it $value = $value . 'Z'; } - $value = $self->datetime_format_inbound($value); + $value = Bugzilla::WebService::Server::XMLRPC->datetime_format_inbound($value); } return $value;