## Can probably go in lower branches, but I'd like to keep it in
## master for now
. Added \u{xxxxx} Unicode Codepoint Escape Syntax. (Andrea)
. Fixed oversight where define() did not support arrays yet const syntax did. (Andrea, Dmitry)
. Use "integer" and "float" instead of "long" and "double" in ZPP, type hint and conversion error messages. (Andrea)
+ . Implemented FR #55428 (E_RECOVERABLE_ERROR when output buffering in output buffering handler). (Kalle)
- Date:
. Fixed day_of_week function as it could sometimes return negative values
-$Id$
+$Id$
PHP X.Y UPGRADE NOTES
However, \u without a following { is unaffected, so "\u202e" won't error and
will work the same as before.
. zend_function.common.num_args don't include the variadic argument anymore.
+ . ob_start() no longer issues an E_ERROR, but instead an E_RECOVERABLE_ERROR in case an
+ output buffer is created in an output buffer handler.
- DBA
. dba_delete() now returns false if the key was not found for the inifile
if (op && OG(active) && OG(running)) {
/* fatal error */
php_output_deactivate();
- php_error_docref("ref.outcontrol", E_ERROR, "Cannot use output buffering in output buffering display handlers");
+ php_error_docref("ref.outcontrol", E_RECOVERABLE_ERROR, "Cannot use output buffering in output buffering display handlers");
return 1;
}
return 0;