diff options
author | Thomas BrĂ¼derli | 2007-10-02 12:41:07 +0000 |
---|---|---|
committer | Thomas BrĂ¼derli | 2007-10-02 12:41:07 +0000 |
commit | d3bc458e433859e5ae4b517240839db698a28f09 (patch) | |
tree | 48b53304b58f869ce071263ef57e89608dd5727a | |
parent | 8ddceef470edc16669317965cee69982ff0c6e35 (diff) | |
download | itools-d3bc458e433859e5ae4b517240839db698a28f09.tar.gz itools-d3bc458e433859e5ae4b517240839db698a28f09.tar.bz2 itools-d3bc458e433859e5ae4b517240839db698a28f09.zip |
Comments are stripped off, stupid!
-rw-r--r-- | itjs.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -43,13 +43,15 @@ if ($checksum != $_SERVER['HTTP_IF_NONE_MATCH']) if (!preg_match('/Opera/', $_SERVER['HTTP_USER_AGENT'])) header("Cache-Control: max-age=900"); + $data = itjs::strip($data); + if ($_REQUEST['boot']) { $data .= "window.it_boot_init();\n"; $data .= sprintf("/*sln:% 8d*/", strlen($data) + 16); } - echo itjs::strip($data); + echo $data; } else header("HTTP/1.0 304 Not Modified"); |