Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Critical
-
Resolution: Unresolved
-
Affects Version/s: 1.9.5
-
Fix Version/s: None
-
Component/s: Zend_Amf
-
Labels:None
Description
Zend_Amf should use in writeObject() method
$propertyNames = array_keys(get_object_vars($object));
to enumerate properties in serialised object instead of
foreach($object as $key => $value) {
if( $key[0] != "_") {
$propertyNames[] = $key;
}
}