diff options
author | Christian Schneider | 2011-09-29 14:12:20 +0000 |
---|---|---|
committer | Christian Schneider | 2011-09-29 14:12:20 +0000 |
commit | 6f20e84eec00c5a66c12dba9c102f67293a8cdcb (patch) | |
tree | 5306169ba9adc1b26dab5b7eb3a798e1d55de964 /itjs.php | |
parent | b881c0cf629c99ec7cf3067164523036e9dcdfb4 (diff) | |
download | itools-6f20e84eec00c5a66c12dba9c102f67293a8cdcb.tar.gz itools-6f20e84eec00c5a66c12dba9c102f67293a8cdcb.tar.bz2 itools-6f20e84eec00c5a66c12dba9c102f67293a8cdcb.zip |
Fix Content-Type fir PIE.htc because IE9 is very picky about it
Diffstat (limited to 'itjs.php')
-rw-r--r-- | itjs.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ else if (it::match('\.css', $_SERVER['PHP_SELF'])) else if (it::match('\.htc$', $file)) { ob_start('ob_gzhandler'); - header("Content-Type: text/plain; charset=iso-8859-1"); + header("Content-Type: text/x-component"); } else if (!it::match('\.html$', $file)) { |