diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-06 18:09:45 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-06 18:09:45 -0400 |
commit | 81ac4d6fff2b7350a2942e9b84fc8a42e16e8d35 (patch) | |
tree | c27406636e41d18078af9e91328efa9e40cd49d5 /webroot | |
parent | bb96c609c2c25509e110e5aeab228bbf4ebfa9f3 (diff) | |
download | otakuhub-81ac4d6fff2b7350a2942e9b84fc8a42e16e8d35.tar.xz |
Force shorttags on
Diffstat (limited to 'webroot')
-rw-r--r-- | webroot/.htaccess | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/webroot/.htaccess b/webroot/.htaccess index 21796cf..7029a45 100644 --- a/webroot/.htaccess +++ b/webroot/.htaccess @@ -4,4 +4,7 @@ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !favicon.ico$ RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] -</IfModule>
\ No newline at end of file +</IfModule> +<IfModule mod_php5.c> + php_value short_open_tag 1 +</IfModule> |