summaryrefslogtreecommitdiff
path: root/php.ini-production
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2013-09-13 14:10:53 -0700
committerChristopher Jones <sixd@php.net>2013-09-13 14:10:53 -0700
commitd52dbd569fd0f68ec2c79a96f1a3466c71ef549e (patch)
tree229c4412dc163d13a880f2650c1499ea02065e31 /php.ini-production
parente5678c9b95a68c28f40c43217e299eb22780a526 (diff)
parent9eaffd34c123ae5782054cd32bf6caa50ff2b7d2 (diff)
downloadphp-git-d52dbd569fd0f68ec2c79a96f1a3466c71ef549e.tar.gz
Merge branch 'PHP-5.5' of https://git.php.net/repository/php-src into PHP-5.5
# By Adam Harvey (3) and others # Via Adam Harvey (2) and Michael Wallner (1) * 'PHP-5.5' of https://git.php.net/repository/php-src: fix broken sha2 configure tests Fixed minor bug in test. Move NEWS entries to correct version Fix bug #64782: SplFileObject constructor make $context optional Fix bug #65502: DateTimeImmutable::createFromFormat returns DateTime Fix bug #65548: Comparison for DateTimeImmutable doesn't work Tinker with the wording of the short_open_tag description. Fix NEWS: these commits were after 5.5.4 was branched and will be in 5.5.5. Handle CLI server request headers case insensitively. ensure that the defined interpolation method is used by the generic scaling functions Fixed issue #128 (opcache_invalidate segmentation fault) 5.4.21 now
Diffstat (limited to 'php.ini-production')
-rw-r--r--php.ini-production13
1 files changed, 6 insertions, 7 deletions
diff --git a/php.ini-production b/php.ini-production
index 0014c4e251..02a43790d2 100644
--- a/php.ini-production
+++ b/php.ini-production
@@ -197,13 +197,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. It's been
-; recommended for several years that you not use the short tag "short cut" and
-; instead to use the full <?php and ?> tag combination. With the wide spread 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. But because
-; this short cut has been a feature for such a long time, it's currently still
-; supported for backwards compatibility, but we recommend you don't use them.
+; <? 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