summaryrefslogtreecommitdiff
path: root/itjs.php
diff options
context:
space:
mode:
Diffstat (limited to 'itjs.php')
-rw-r--r--itjs.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/itjs.php b/itjs.php
index 4e3b89c..95d6c0b 100644
--- a/itjs.php
+++ b/itjs.php
@@ -44,7 +44,10 @@ if ($checksum != $_SERVER['HTTP_IF_NONE_MATCH'])
header("Cache-Control: max-age=900");
if ($_REQUEST['boot'])
- $data .= "window.it_boot_init();";
+ {
+ $data .= "window.it_boot_init();\n";
+ $data .= sprintf("/*sln:% 8d*/", strlen($data) + 16);
+ }
echo itjs::strip($data);
}