From b08a2b29fd69cc8f5b22eabc830281f38b821c1b Mon Sep 17 00:00:00 2001 From: Thomas BrĂ¼derli Date: Mon, 27 Aug 2007 08:35:43 +0000 Subject: Encode all non-ascii chars in js data --- itjs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'itjs.php') diff --git a/itjs.php b/itjs.php index 5c23b4a..d8932ed 100644 --- a/itjs.php +++ b/itjs.php @@ -43,7 +43,7 @@ if ($checksum != $_SERVER['HTTP_IF_NONE_MATCH']) header("Cache-Control: max-age=900"); if ($_REQUEST['boot']) - $data = preg_replace('/([\xa0-\xff])/e', 'sprintf("\\u%04x", ord("\\1"))', $data) . "window.it_boot_init();"; + $data .= "window.it_boot_init();"; echo itjs::strip($data); } -- cgit v1.2.3