summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2012-09-22 21:54:59 +0200
committerNikita Popov <nikic@php.net>2012-09-22 21:54:59 +0200
commit5de79f9f0717d147b02033e270bea20561707db8 (patch)
tree0f938198f9452a068f87e632423df6443401bbc7
parent5c7dd7811ef34c8cbe8bdad333678809f649d383 (diff)
downloadphp-git-5de79f9f0717d147b02033e270bea20561707db8.tar.gz
Add NEWS/UPGRADING for previous change
-rw-r--r--NEWS2
-rwxr-xr-xUPGRADING4
2 files changed, 6 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index d54cc1c18e..00a2dd67ea 100644
--- a/NEWS
+++ b/NEWS
@@ -26,6 +26,8 @@ PHP NEWS
(srgoogleguy, Gustavo)
. Implemented FR #60738 (Allow 'set_error_handler' to handle NULL).
(Laruence, Nikita Popov)
+ . Return previous handler when passing NULL to set_error_handler and
+ set_exception_handler. (Nikita Popov)
. Added optional second argument for assert() to specify custom message. Patch
by Lonny Kapelushnik (lonny@lonnylot.com). (Lars)
diff --git a/UPGRADING b/UPGRADING
index 59dfbb436a..bc5773cfa8 100755
--- a/UPGRADING
+++ b/UPGRADING
@@ -107,6 +107,10 @@ PHP X.Y UPGRADE NOTES
but that predated the existence of E_DEPRECATED.
- php_logo_guid(), php_egg_logo_guid(), php_real_logo_guid() and
zend_logo_guid() have been removed
+- set_error_handler(NULL) can now be used to reset the error handler.
+ Furthermore both set_error_handler(NULL) and set_exception_handler(NULL) will
+ now return the previously defined error/exception handler. Previously
+ bool(true) was returned.
========================================
5. New Functions