From cff801de3dc850209199c15a24f82049b29653b9 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Wed, 18 Nov 2009 16:17:06 +0000 Subject: Protect from Firewalls/Proxies altering Javascript source code --- itjs/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'itjs') diff --git a/itjs/boot.js b/itjs/boot.js index 6ee8845..50e7a26 100644 --- a/itjs/boot.js +++ b/itjs/boot.js @@ -198,7 +198,7 @@ function it_boot(file, isretry) { // check length cookie var ln = String(loader.responseText).match(/\*sln:([0-9]+)[^\n]*\n([\s\S]*\n)\/\*eln:\1/); - code = ln ? ln[2] : loader.responseText; + code = ln ? unescape(ln[2]) : loader.responseText; if (ln && ln[1]-0 == code.length) { it_boot.sequence += "e"; -- cgit v1.2.3