From e83f0b52aa8bdaa3123c64645ba2cdf6def7c2c8 Mon Sep 17 00:00:00 2001
From: Urban Müller
Date: Thu, 25 Oct 2007 11:40:27 +0000
Subject: renamed starttime var

---
 itjs/boot.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'itjs')

diff --git a/itjs/boot.js b/itjs/boot.js
index aaa0321..efdaa6e 100644
--- a/itjs/boot.js
+++ b/itjs/boot.js
@@ -2,7 +2,7 @@
 
 var it_boot_status = "boot";
 var it_panictimer = window.setTimeout("it_panic(it_boot_status)", 31337), it_domtimer;
-var it_catcherrstart = new Date().getTime();
+var it_starttime = new Date().getTime();
 
 function it_catcherr(msg, url, line)
 {
@@ -50,7 +50,7 @@ function it_boot_report(msg, file, line, more)
 	window.clearTimeout(window.it_domtimer);
 	window.clearTimeout(window.it_panictimer);
 
-	new Image().src = "/itjs/error.gif/" + escape(msg) + "|" + escape(file) + "|" + line + "|" + (new Date().getTime() - it_catcherrstart) + "|" + escape(more);
+	new Image().src = "/itjs/error.gif/" + escape(msg) + "|" + escape(file) + "|" + line + "|" + (new Date().getTime() - it_starttime) + "|" + escape(more);
 }
 
 function it_boot_checkcss(style, key, value)
-- 
cgit v1.2.3