From 55db3afa9b770db9266ffa914c772f1ca44ac6d1 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Thu, 24 May 2007 08:41:41 +0000 Subject: [PATCH] Remove few "you"s git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@236231 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/migration52.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/appendices/migration52.xml b/appendices/migration52.xml index e2fd2e6b18..e740415234 100644 --- a/appendices/migration52.xml +++ b/appendices/migration52.xml @@ -1,5 +1,5 @@ - + Migrating from PHP 5.1.x to PHP 5.2.x @@ -1894,7 +1894,7 @@ $obj->getCommentName(''); Error Reporting Some of the existing E_ERROR conditions have been - converted to something that you can catch with a user-defined error + converted to something that can be caught with a user-defined error handler. If an E_RECOVERABLE_ERROR is not handled, it will behave in the same way as @@ -1906,20 +1906,20 @@ $obj->getCommentName(''); error_reporting constant is now 6143, where the previous value was 2047. Because PHP constants have no meaning outside of PHP, in some cases the integer value is used - instead so these will need to be adjusted. So for example if you are + instead so these will need to be adjusted. So for example by setting the error_reporting mode from either the httpd.conf or the - .htaccess files, you will need to adjust the value - accordingly. The same applies if you use the numeric value rather than the - constant in your PHP scripts. + .htaccess files, the value has to be changed + accordingly. The same applies when the numeric values are used + rather than the constants in PHP scripts. As a side-effect of a change made to prevent duplicate error messages when track_errors is - On, it is now necessary to return &false; from your - error handler in order to populate + On, it is now necessary to return &false; from + user defined error handlers in order to populate $php_errormsg. This - provides you fine-grain control over the levels of messages stored. + provides a fine-grain control over the levels of messages stored.