From f55c56b74bdd374025fa5532732c37cb2941e81a Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Fri, 1 May 2009 01:55:41 +0000 Subject: [PATCH] - MFH: Fixed bug #48120 (Implementing abstract class FilterIterator in regexiterator.inc) --- ext/spl/internal/regexiterator.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/spl/internal/regexiterator.inc b/ext/spl/internal/regexiterator.inc index 6548f911f7..d1ffbb7a1d 100755 --- a/ext/spl/internal/regexiterator.inc +++ b/ext/spl/internal/regexiterator.inc @@ -17,7 +17,7 @@ * * This filter iterator assumes that the inner iterator */ -class RegexIterator implements FilterIterator +class RegexIterator extends FilterIterator { const USE_KEY = 0x00000001; /**< If present in $flags the the key is used rather then the current value. */ @@ -160,4 +160,4 @@ class RegexIterator implements FilterIterator } } -?> \ No newline at end of file +?> -- 2.40.0