diff options
author | Xinchen Hui <laruence@php.net> | 2014-08-11 17:46:56 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-08-11 17:46:56 +0800 |
commit | b6ddcf9c7176f6cca06804c747c08bee89980e44 (patch) | |
tree | d2cfb1be8df702e9085cd705dcd87d41d164f307 | |
parent | d4df6d02003c3eef4751f579cfc462ac8b398cf0 (diff) | |
download | php-git-b6ddcf9c7176f6cca06804c747c08bee89980e44.tar.gz |
Fixed bug #67813 (CachingIterator::__construct InvalidArgumentException wrong message)
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | ext/spl/spl_iterators.c | 2 | ||||
-rw-r--r-- | ext/spl/tests/spl_caching_iterator_constructor_flags.phpt | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -6,6 +6,10 @@ PHP NEWS . Fixed bug #41631 (socket timeouts not honored in blocking SSL reads) (Daniel Lowrey). +- SPL: + . Fixed bug #67813 (CachingIterator::__construct InvalidArgumentException + wrong message). (tim_siebels_aurich at yahoo dot de) + ?? ??? 2014, PHP 5.5.16 - COM: diff --git a/ext/spl/spl_iterators.c b/ext/spl/spl_iterators.c index 7c20352e99..87a448ca64 100644 --- a/ext/spl/spl_iterators.c +++ b/ext/spl/spl_iterators.c @@ -1414,7 +1414,7 @@ static spl_dual_it_object* spl_dual_it_construct(INTERNAL_FUNCTION_PARAMETERS, z return NULL; } if (spl_cit_check_flags(flags) != SUCCESS) { - zend_throw_exception(spl_ce_InvalidArgumentException, "Flags must contain only one of CALL_TOSTRING, TOSTRING_USE_KEY, TOSTRING_USE_CURRENT, TOSTRING_USE_CURRENT", 0 TSRMLS_CC); + zend_throw_exception(spl_ce_InvalidArgumentException, "Flags must contain only one of CALL_TOSTRING, TOSTRING_USE_KEY, TOSTRING_USE_CURRENT, TOSTRING_USE_INNER", 0 TSRMLS_CC); zend_restore_error_handling(&error_handling TSRMLS_CC); return NULL; } diff --git a/ext/spl/tests/spl_caching_iterator_constructor_flags.phpt b/ext/spl/tests/spl_caching_iterator_constructor_flags.phpt index 499cd67559..dcb4287c45 100644 --- a/ext/spl/tests/spl_caching_iterator_constructor_flags.phpt +++ b/ext/spl/tests/spl_caching_iterator_constructor_flags.phpt @@ -21,5 +21,5 @@ $test = new CachingIterator($arrayIterator, 3); // this throws an exception ?> ===DONE=== --EXPECTF-- -Flags must contain only one of CALL_TOSTRING, TOSTRING_USE_KEY, TOSTRING_USE_CURRENT, TOSTRING_USE_CURRENT +Flags must contain only one of CALL_TOSTRING, TOSTRING_USE_KEY, TOSTRING_USE_CURRENT, TOSTRING_USE_INNER ===DONE=== |