From ea3eec9133bb148aedc9a8f293c6372247237a8b Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Mon, 10 Nov 2003 18:05:02 +0000 Subject: [PATCH] Need to update iterators handler table too. --- Zend/zend_iterators.c | 7 ++++--- 1 file 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 */ -- 2.50.1