summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorAdam Harvey <aharvey@php.net>2013-09-09 16:59:26 -0700
committerAdam Harvey <aharvey@php.net>2013-09-09 16:59:26 -0700
commitb8beb657ca725913ab8568eb218691bdd2f838c5 (patch)
tree2fd6e03fef145bbe0373e82ec2fdf67d674b4b40 /php.ini-development
parent2240f9531be40a8d186c47c9f3689c0b72e1a11f (diff)
parentd209c362d2d59b0ceb82ff300cc868933ae23a06 (diff)
downloadphp-git-b8beb657ca725913ab8568eb218691bdd2f838c5.tar.gz
Merge branch 'PHP-5.5'
* PHP-5.5: Tinker with the wording of the short_open_tag description. Conflicts: php.ini-development php.ini-production
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development13
1 files changed, 6 insertions, 7 deletions
diff --git a/php.ini-development b/php.ini-development
index 99532d20d9..beebabbd24 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -199,13 +199,12 @@
engine = On
; This directive determines whether or not PHP will recognize code between
-; <? and ?> tags as PHP source which should be processed as such. For several
-; years we recommended that you not use the short tag shortcut and
-; instead to use the full <?php and ?> tag combination. With the widespread use
-; of XML and use of these tags by other languages, the server can become easily
-; confused and end up parsing the wrong code in the wrong context.
-; This shortcut is still supported for backwards compatibility, but we
-; recommend against its use.
+; <? and ?> tags as PHP source which should be processed as such. It is
+; generally recommended that <?php and ?> should be used and that this feature
+; should be disabled, as enabling it may result in issues when generating XML
+; documents, however this remains supported for backward compatibility reasons.
+; Note that this directive does not control the <?= shorthand tag, which can be
+; used regardless of this directive.
; Default Value: On
; Development Value: Off
; Production Value: Off