diff options
author | Marcus Boerger <helly@php.net> | 2004-05-08 12:35:21 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-05-08 12:35:21 +0000 |
commit | c7b2568269b18105d4940eafe3526c5ae4ba7c54 (patch) | |
tree | b2a35934aa5b43c28ce9ee6aec70f1ef5ab61640 /ext/spl/examples/searchiterator.inc | |
parent | 629a25643c61cf6d561c8971c39ba0ef06f87a6b (diff) | |
download | php-git-c7b2568269b18105d4940eafe3526c5ae4ba7c54.tar.gz |
- Docu updates
- Add missing example file
- Fix aggregation of inner iterators in examples
Diffstat (limited to 'ext/spl/examples/searchiterator.inc')
-rwxr-xr-x | ext/spl/examples/searchiterator.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/examples/searchiterator.inc b/ext/spl/examples/searchiterator.inc index c2bbbe6dea..caee0142dd 100755 --- a/ext/spl/examples/searchiterator.inc +++ b/ext/spl/examples/searchiterator.inc @@ -42,7 +42,7 @@ abstract class SearchIterator extends FilterIterator */ function __call($func, $params) { - return call_user_func_array(array($this->getSubIterator(), $func), $params); + return call_user_func_array(array($this->getInnerIterator(), $func), $params); } } |