diff options
author | Thomas BrĂ¼derli | 2007-08-08 15:02:59 +0000 |
---|---|---|
committer | Thomas BrĂ¼derli | 2007-08-08 15:02:59 +0000 |
commit | fe9161ccaf3c504e3a9afbe66e49b6514922be0b (patch) | |
tree | 7926b507c77dbfc3b2f274ce124dff87e975587c | |
parent | 1a413655f0b1b717d568b165c5b72e14575b75f9 (diff) | |
download | itools-fe9161ccaf3c504e3a9afbe66e49b6514922be0b.tar.gz itools-fe9161ccaf3c504e3a9afbe66e49b6514922be0b.tar.bz2 itools-fe9161ccaf3c504e3a9afbe66e49b6514922be0b.zip |
Simplified code (just a little bit)
-rw-r--r-- | itjs.php | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -43,8 +43,7 @@ if ($checksum != $_SERVER['HTTP_IF_NONE_MATCH']) if ($_REQUEST['boot']) $data = preg_replace('/([\xa0-\xff])/e', 'sprintf("\\u%04x", ord("\\1"))', $data) . "window.it_boot_init();"; - $data = itjs::strip($data); - echo $data; + echo itjs::strip($data); } else header("HTTP/1.0 304 Not Modified"); |