From 0992ae816d494e7515bae05e3a16d1b99d0a93ee Mon Sep 17 00:00:00 2001 From: Mark Skilbeck Date: Mon, 12 Apr 2010 03:48:58 +0000 Subject: [PATCH] Made the allow_call_time_pass_reference documentation clearer - cleaned up the English. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@297854 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/ini.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/appendices/ini.xml b/appendices/ini.xml index 862267f33a..c3da23e13f 100644 --- a/appendices/ini.xml +++ b/appendices/ini.xml @@ -3793,12 +3793,12 @@ auto_prepend_file=security.php - Tells whether the short form (<? ?>) + Tells PHP whether the short form (<? ?>) of PHP's open tag should be allowed. If you want to use PHP in combination with XML, you can disable this option in order to use <?xml ?> inline. Otherwise, you can print it with PHP, for example: <?php echo '<?xml - version="1.0"?>'; ?>. Also if disabled, you must use the + version="1.0"?>'; ?>. Also, if disabled, you must use the long form of the PHP open tag (<?php ?>). @@ -3869,10 +3869,10 @@ auto_prepend_file=security.php Passing arguments by reference at function call time was deprecated for - code cleanliness reason. Function can modify its argument in - undocumented way if it didn't declared that the argument is passed by + code-cleanliness reasons. A function can modify its arguments in an + undocumented way if it didn't declare that the argument shall be passed by reference. To prevent side-effects it's better to specify which - arguments are passed by reference in function declaration only. + arguments are passed by reference in the function declaration only. In PHP5, allow_call_time_pass_reference is deprecated, in