You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 16, 2018. It is now read-only.
After some debugging I found that the problem is made in version 1.12.4 . these 3 lines is added in that version:
//if there is a child element, try to parse type for it
if (!$type && $value instanceof SimpleXMLElement) {
self::_extractTypeAndValue($value->children(), $type, $value);
}
which makes a recursive call and creates the problem!
Any body here to help?
Hi. I have a problem in xmlrpc call. The error message says
which is related to
protected static function _extractTypeAndValue(SimpleXMLElement $xml, &$type, &$value) { list($type, $value) = each($xml);
Is it a bug or am I doing sth wrong?
The text was updated successfully, but these errors were encountered: