diff options
author | Thomas BrĂ¼derli | 2007-09-10 12:55:02 +0000 |
---|---|---|
committer | Thomas BrĂ¼derli | 2007-09-10 12:55:02 +0000 |
commit | 941471e59dd9bc4011ab6a1edba39e70b6ce08a2 (patch) | |
tree | 01f3c24e557f1c80a7ccb877bdc8193f4e477f06 | |
parent | 29be2c4ddfe4dc4631083ac42a611804f7d8ac36 (diff) | |
download | itools-941471e59dd9bc4011ab6a1edba39e70b6ce08a2.tar.gz itools-941471e59dd9bc4011ab6a1edba39e70b6ce08a2.tar.bz2 itools-941471e59dd9bc4011ab6a1edba39e70b6ce08a2.zip |
Desperate attempt to fix mysterious syntax errors in IE 6
-rw-r--r-- | itjs.php | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -45,7 +45,10 @@ if ($checksum != $_SERVER['HTTP_IF_NONE_MATCH']) if ($_REQUEST['boot']) $data .= "window.it_boot_init();"; - echo itjs::strip($data); + $data = itjs::strip($data); + + header("Content-Length: " . strlen($data)); + echo $data; } else header("HTTP/1.0 304 Not Modified"); |