diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2012-06-07 15:20:00 +0200 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2012-06-10 00:04:53 +0200 |
commit | 4ec75539dba8cefef16e56f02c62755a9aa9c60b (patch) | |
tree | 21437d4d80b94eb510158b7d31fbbd34bd45ab90 /ext/intl/common/common_enum.cpp | |
parent | c6593a0e9b3ea1a6045f8a52a1b9d8bce4d63773 (diff) | |
download | php-git-4ec75539dba8cefef16e56f02c62755a9aa9c60b.tar.gz |
Change in BreakIterator::getPartsIterator()
BreakIterator::getPartsIterator() now returns an IntlIterator subclass
with a special method, getBreakIterator(), that returns the
associated BreakIterator.
Any call to getRuleStatus() is forwarded to the BreakIterator.
Diffstat (limited to 'ext/intl/common/common_enum.cpp')
-rw-r--r-- | ext/intl/common/common_enum.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/common/common_enum.cpp b/ext/intl/common/common_enum.cpp index 6dfacd7e3a..da47a437a6 100644 --- a/ext/intl/common/common_enum.cpp +++ b/ext/intl/common/common_enum.cpp @@ -31,7 +31,7 @@ extern "C" { } zend_class_entry *IntlIterator_ce_ptr; -static zend_object_handlers IntlIterator_handlers; +zend_object_handlers IntlIterator_handlers; void zoi_with_current_dtor(zend_object_iterator *iter TSRMLS_DC) { |