Bug 551199: The Bug.search WebService function was throwing an error about

datetime_format_inbound not being found
r=dkl, a=mkanat


git-svn-id: svn://10.0.0.236/branches/BUGZILLA-3_6-BRANCH@259937 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2010-03-10 21:01:04 +00:00
parent e75d3a20aa
commit 510b4dfb9b
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
7029
7030

View 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;