From: Stanislav Malyshev Date: Sun, 12 Jan 2003 17:22:35 +0000 (+0000) Subject: Remove handle_property from here too X-Git-Tag: PHP_5_0_dev_before_13561_fix~279 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ae8d124cef19cd0850759c9bc467c0888d931c3;p=php Remove handle_property from here too --- diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 5b30436388..5695cc9b8e 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -95,9 +95,9 @@ BEGIN_EXTERN_C() class_container.destructor = NULL; \ class_container.clone = NULL; \ class_container.create_object = NULL; \ - class_container.handle_function_call = handle_fcall; \ - class_container.handle_property_get = handle_propget; \ - class_container.handle_property_set = handle_propset; \ + class_container.__call = handle_fcall; \ + class_container.__get = handle_propget; \ + class_container.__set = handle_propset; \ }