From 7b70ca475f0cf12a0d9e33a062a9de8e21737327 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 26 Mar 2006 02:24:33 +0000 Subject: [PATCH] - Fix docu --- ext/spl/internal/iteratoriterator.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/internal/iteratoriterator.inc b/ext/spl/internal/iteratoriterator.inc index ebe946187b..51339d28de 100755 --- a/ext/spl/internal/iteratoriterator.inc +++ b/ext/spl/internal/iteratoriterator.inc @@ -109,7 +109,7 @@ class IteratorIterator implements OuterIterator */ function __call($func, $params) { - return call_user_func_array(array($this->it, $func), $params); + return call_user_func_array(array($this->iterator, $func), $params); } /** The inner iterator must be private because when this class will be -- 2.50.1