]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 551199: The Bug.search WebService function was throwing an error about
authorMax Kanat-Alexander <mkanat@bugzilla.org>
Wed, 10 Mar 2010 20:53:01 +0000 (12:53 -0800)
committerMax Kanat-Alexander <mkanat@bugzilla.org>
Wed, 10 Mar 2010 20:53:01 +0000 (12:53 -0800)
datetime_format_inbound not being found
r=dkl, a=mkanat

Bugzilla/WebService/Server/XMLRPC.pm

index a492266c6314b3df97414d3da8a912837fc725c3..1a574aa1edb5351c84a049384d7cd3e96d4e68a8 100644 (file)
@@ -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;