diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-12-07 21:21:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-12-07 21:21:35 +0000 |
commit | 7c187f894cb74270cf1a43bbfe5844e0ac5b56ec (patch) | |
tree | 0b2edf785b5a4c0039c660751412976afc7c95a7 | |
parent | 286871d62c9ca53690e81df86e1dbfc3c43dfe32 (diff) | |
download | brdo-7c187f894cb74270cf1a43bbfe5844e0ac5b56ec.tar.gz brdo-7c187f894cb74270cf1a43bbfe5844e0ac5b56ec.tar.bz2 |
- Added "short_open_tag 1" to the PHP settings.
-rw-r--r-- | .htaccess | 1 | ||||
-rw-r--r-- | includes/conf.php | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -22,6 +22,7 @@ ErrorDocument 500 /error.php <IfModule mod_php4.c> php_value register_globals 1 php_value track_vars 1 + php_value short_open_tag 1 php_value magic_quotes_gpc 0 php_value magic_quotes_runtime 0 php_value magic_quotes_sybase 0 diff --git a/includes/conf.php b/includes/conf.php index 96683f6b7..452c80c91 100644 --- a/includes/conf.php +++ b/includes/conf.php @@ -25,9 +25,10 @@ $db_url = "mysql://drupal:drupal@localhost/drupal"; # magic_quotes_runtime 0 # magic_quotes_sybase 0 # track_vars 1 +# short_open_tag 1 # register_globals 1 -# Avoid "page has expired" problems when browsing from your cache or +# Avoid "page has expired" problems when browsing from your cache or # history after having filled out a form: // ini_set("session.cache_limiter", ""); |