summaryrefslogtreecommitdiff
path: root/ext/spl/examples/searchiterator.inc
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-05-08 12:35:21 +0000
committerMarcus Boerger <helly@php.net>2004-05-08 12:35:21 +0000
commitc7b2568269b18105d4940eafe3526c5ae4ba7c54 (patch)
treeb2a35934aa5b43c28ce9ee6aec70f1ef5ab61640 /ext/spl/examples/searchiterator.inc
parent629a25643c61cf6d561c8971c39ba0ef06f87a6b (diff)
downloadphp-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-xext/spl/examples/searchiterator.inc2
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);
}
}