diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-10-17 09:49:47 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-10-17 09:49:47 +0000 |
commit | d023b841a2672c6670a09587530ce9858ed22626 (patch) | |
tree | c93dcf0573fbe2e5ac237f5c8428bf995d5463d5 /php.ini-dist | |
parent | 58d1ee0915666fa3dc452d51671f6287217d8ae6 (diff) | |
download | php-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-dist | 7 |
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. |