summaryrefslogtreecommitdiff
path: root/README.UPDATE_5_2
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-05-21 15:50:31 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-05-21 15:50:31 +0000
commit38d7ea305c58f41ee3f0bf27e8009477a1d63cf6 (patch)
tree65a479f4487dab0b95cc5aea6abb39f5ff9d739f /README.UPDATE_5_2
parente145343b576a0091b032445eb545b3d685ae97aa (diff)
downloadphp-git-38d7ea305c58f41ee3f0bf27e8009477a1d63cf6.tar.gz
Added a note about E_RECOVERABLE_ERROR being a part of E_ALL.
Diffstat (limited to 'README.UPDATE_5_2')
-rw-r--r--README.UPDATE_5_27
1 files changed, 7 insertions, 0 deletions
diff --git a/README.UPDATE_5_2 b/README.UPDATE_5_2
index bce2bcad4c..daedb50ee6 100644
--- a/README.UPDATE_5_2
+++ b/README.UPDATE_5_2
@@ -1,5 +1,12 @@
PHP 5.2 Update info or NEWS explained
+- As of PHP 5.2 the E_ALL error reporting mode includes the E_RECOVERABLE_ERROR.
+
+ This changes means that the value of the E_ALL constant had changed to 6143
+ from its previous value of 2047. If you are setting your error reporting mode
+ inside the Apache config file or the .htaccess files you will need to adjust
+ the value of error_reporting INI setting accordingly.
+
- Added new error mode E_RECOVERABLE_ERROR. (Derick, Marcus, Tony)
This changes a few E_ERROR conditions to something that you can now catch