From 65f8bafb29a58e64893bf484d18f71c2163bd5de Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Mon, 7 Jul 2003 09:08:33 +0000 Subject: [PATCH] Fix & whitespace --- Zend/zend_objects_API.c | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/Zend/zend_objects_API.c b/Zend/zend_objects_API.c index 34df13e159..8867080647 100644 --- a/Zend/zend_objects_API.c +++ b/Zend/zend_objects_API.c @@ -271,23 +271,25 @@ ZEND_API zend_object_handlers *zend_get_std_object_handlers() static zend_object_handlers zend_object_proxy_handlers = { ZEND_OBJECTS_STORE_HANDLERS, - NULL, /* read_property */ - NULL, /* write_property */ - NULL, /* get_property_ptr */ - NULL, /* get_property_zval_ptr */ - zend_object_proxy_get, /* get */ - zend_object_proxy_set, /* set */ - NULL, /* has_property */ - NULL, /* unset_property */ - NULL, /* get_properties */ - NULL, /* get_method */ - NULL, /* call_method */ - NULL, /* get_constructor */ - NULL, /* get_class_entry */ - NULL, /* get_class_name */ - NULL /* compare_objects */ + NULL, /* read_property */ + NULL, /* write_property */ + NULL, /* write_dimension */ + NULL, /* get_property_ptr */ + NULL, /* get_property_zval_ptr */ + zend_object_proxy_get, /* get */ + zend_object_proxy_set, /* set */ + NULL, /* has_property */ + NULL, /* unset_property */ + NULL, /* get_properties */ + NULL, /* get_method */ + NULL, /* call_method */ + NULL, /* get_constructor */ + NULL, /* get_class_entry */ + NULL, /* get_class_name */ + NULL /* compare_objects */ }; + /* * Local variables: * tab-width: 4 -- 2.40.0