summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/Server/XMLRPC.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-03-10 21:52:02 +0100
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-03-10 21:52:02 +0100
commitb51abfd72a50401b02cbbdba4fd63568648d3cbf (patch)
treebeab294bef271c858c781732b489c22be5d9d790 /Bugzilla/WebService/Server/XMLRPC.pm
parent55312f690a61c8078c23028fc26b5afb6c4149de (diff)
downloadbugzilla-b51abfd72a50401b02cbbdba4fd63568648d3cbf.tar.gz
bugzilla-b51abfd72a50401b02cbbdba4fd63568648d3cbf.tar.xz
Bug 551199: The Bug.search WebService function was throwing an error about
datetime_format_inbound not being found r=dkl, 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 a492266c6..1a574aa1e 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;