- Revert r314387

(property_info.name has the mangled name)
This commit is contained in:
Felipe Pena 2011-08-07 13:04:02 +00:00
parent cc42ac9d9b
commit 619cfeef46

View File

@ -3378,7 +3378,7 @@ ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, in
property_info.ce = ce;
zend_hash_quick_update(&ce->properties_info, property_info.name, property_info.name_length+1, h, &property_info, sizeof(zend_property_info), NULL);
zend_hash_quick_update(&ce->properties_info, name, name_length+1, h, &property_info, sizeof(zend_property_info), NULL);
return SUCCESS;
}