diff options
-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"); |