From d023b841a2672c6670a09587530ce9858ed22626 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Thu, 17 Oct 2002 09:49:47 +0000 Subject: [PATCH] Add note for short_open_tag # Assuming no objection for adding note in the manual. --- php.ini-dist | 7 ++++++- php.ini-recommended | 7 ++++++- 2 files changed, 12 insertions(+), 2 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 tags are recognized. +; Allow the 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. diff --git a/php.ini-recommended b/php.ini-recommended index d47b3f1aa9..9b378fb96d 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -80,7 +80,12 @@ ; Enable the PHP scripting language engine under Apache. engine = On -; Allow the tags are recognized. +; Allow the 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. -- 2.50.1