From fa5e779fb28f0e266bf01cc7834b15739eb8c642 Mon Sep 17 00:00:00 2001 From: short <> Date: Sat, 1 Oct 2005 05:22:34 +0000 Subject: [PATCH] Fixed standards compliance: text/javascript -> application/javascript --- .htaccess | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.htaccess b/.htaccess index b125590..26081b8 100644 --- a/.htaccess +++ b/.htaccess @@ -30,6 +30,12 @@ AddType application/x-bzip .bz AddType application/x-bzip2 .bz2 AddType application/zip .zip +# Do not: text/javascript +# as it does not look as registered, at least according to: MIME::Types $VERSION 1.15 +# "application/javascript" so far standardized till 2005-12-08 by: +# http://www.ietf.org/internet-drafts/draft-hoehrmann-script-types-03.txt +AddType application/javascript .js + php_flag short_open_tag off php_flag magic_quotes_gpc off -- 1.8.3.1