or an object as first parameter. (Andrey)
- Fixed potential problems with unserializing invalid serialize data. (Marcus)
- Fixed bug #29801 (Set limit on the size of mmapable data). (Ilia)
+- Fixed bug #30799 (SoapServer doesn't handle private or protected properties).
+ (Dmitry)
- Fixed bug #30783 (Apache crash when using ReflectionFunction::
getStaticVariables()). (Marcus)
- Fixed bug #30750 (Meaningful error message when upload directory is not
property = master_to_xml(get_conversion((*zprop)->type), (*zprop), style, xmlParam);
if (key_type == HASH_KEY_IS_STRING) {
- xmlNodeSetName(property, str_key);
+ char *prop_name;
+
+ if (Z_TYPE_P(data) == IS_OBJECT) {
+ char *class_name;
+
+ zend_unmangle_property_name(str_key, &class_name, &prop_name);
+ } else {
+ prop_name = str_key;
+ }
+ if (prop_name) {
+ xmlNodeSetName(property, prop_name);
+ }
}
zend_hash_move_forward(prop);
}