diff options
| author | Marcus Boerger <helly@php.net> | 2006-03-26 02:24:33 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2006-03-26 02:24:33 +0000 |
| commit | 7b70ca475f0cf12a0d9e33a062a9de8e21737327 (patch) | |
| tree | 73ec51ebda0f219c818678b15965479474bb4bf0 /ext/spl/internal | |
| parent | bf4ae10c36dd7ab8c43c0455083cbe103099408c (diff) | |
| download | php-git-7b70ca475f0cf12a0d9e33a062a9de8e21737327.tar.gz | |
- Fix docu
Diffstat (limited to 'ext/spl/internal')
| -rwxr-xr-x | ext/spl/internal/iteratoriterator.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
