summaryrefslogtreecommitdiff
path: root/itjs.php
diff options
context:
space:
mode:
Diffstat (limited to 'itjs.php')
-rw-r--r--itjs.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/itjs.php b/itjs.php
index d61284c..a8305b5 100644
--- a/itjs.php
+++ b/itjs.php
@@ -74,10 +74,9 @@ else if (it::match('\.htc$', $lastfile))
}
else if (!it::match('\.html$', $lastfile))
{
+ header("Content-Type: application/x-javascript; charset=" . (ini_get('default_charset') ?: 'iso-8859-1'));
$data = "window.trace+='i';\n$data\nwindow.trace+='I';\n";
$data .= "\nwindow.it_gotjs = (window.it_gotjs ? window.it_gotjs : '') + '." . it::match('\w+', basename($lastfile)) . "';\n";
- $charset = ini_get('default_charset') ?: 'iso-8859-1';
- header("Content-Type: application/x-javascript; charset=$charset");
}
$data = itjs::strip($data);