From d448b16f969be780444190d178dad4c8b2347612 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Wed, 16 Feb 2011 16:16:33 +0100 Subject: Fix the password recognition. * doh! !== instead of === * also skip attachment.cgi page --- data/bzpage.js | 1 + 1 file changed, 1 insertion(+) (limited to 'data/bzpage.js') diff --git a/data/bzpage.js b/data/bzpage.js index c71ab51..7d59f22 100644 --- a/data/bzpage.js +++ b/data/bzpage.js @@ -24,6 +24,7 @@ var submitHandlerInstalled = false; // for setUpLogging * central handler processing messages from the main script. */ onMessage = function onMessage(msg) { + console.log("onMessage - incoming : msg.cmd = " + msg.cmd); switch (msg.cmd) { case "ReloadThePage": document.location.reload(true); -- cgit