diff options
| -rwxr-xr-x | Zend/zend_iterators.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/Zend/zend_iterators.c b/Zend/zend_iterators.c index 3da67b26cf..3a47db47c5 100755 --- a/Zend/zend_iterators.c +++ b/Zend/zend_iterators.c @@ -38,9 +38,10 @@ static zend_object_handlers iterator_object_handlers = {  	NULL,  	NULL, /* get */  	NULL, /* set */ -	NULL, /* isset */ -	NULL, /* unset */ -	NULL, /* dim unset */ +	NULL, /* has prop */ +	NULL, /* unset prop */ +	NULL, /* has dim */ +	NULL, /* unset dim */  	NULL, /* props get */  	NULL, /* method get */  	NULL, /* call */  | 
