From 1b6598618b17c6799da1c891e6e465d72e9cc3a5 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 26 Mar 2006 00:22:03 +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 454a41df57..b14a48370f 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.40.0