summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-10-17 09:49:47 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-10-17 09:49:47 +0000
commitd023b841a2672c6670a09587530ce9858ed22626 (patch)
treec93dcf0573fbe2e5ac237f5c8428bf995d5463d5 /php.ini-dist
parent58d1ee0915666fa3dc452d51671f6287217d8ae6 (diff)
downloadphp-git-d023b841a2672c6670a09587530ce9858ed22626.tar.gz
Add note for short_open_tag
# Assuming no objection for adding note in the manual.
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist7
1 files changed, 6 insertions, 1 deletions
diff --git a/php.ini-dist b/php.ini-dist
index 2994d30234..34d3b86032 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -67,7 +67,12 @@
; Enable the PHP scripting language engine under Apache.
engine = On
-; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
+; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
+; NOTE: Using short tags should be avoided when developing applications or
+; libraries that are meant for redistribution, or deployment on PHP
+; servers which are not under your control, because short tags may not
+; be supported on the target server. For portable, redistributable code,
+; be sure not to use short tags.
short_open_tag = On
; Allow ASP-style <% %> tags.