summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schneider2011-09-29 14:12:20 +0000
committerChristian Schneider2011-09-29 14:12:20 +0000
commit6f20e84eec00c5a66c12dba9c102f67293a8cdcb (patch)
tree5306169ba9adc1b26dab5b7eb3a798e1d55de964
parentb881c0cf629c99ec7cf3067164523036e9dcdfb4 (diff)
downloaditools-6f20e84eec00c5a66c12dba9c102f67293a8cdcb.tar.gz
itools-6f20e84eec00c5a66c12dba9c102f67293a8cdcb.tar.bz2
itools-6f20e84eec00c5a66c12dba9c102f67293a8cdcb.zip
Fix Content-Type fir PIE.htc because IE9 is very picky about it
-rw-r--r--itjs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/itjs.php b/itjs.php
index fbadac3..26f01ab 100644
--- a/itjs.php
+++ b/itjs.php
@@ -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))
{