diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-02-16 16:16:33 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-02-16 16:16:33 +0100 |
commit | d448b16f969be780444190d178dad4c8b2347612 (patch) | |
tree | 70518229a92bf0e7b5cdc2497bd59356de1d47a3 /data/bzpage.js | |
parent | 10dcf8de5c6965832452c538451d6170b3bafb66 (diff) | |
download | bugzilla-triage-d448b16f969be780444190d178dad4c8b2347612.tar.gz |
Fix the password recognition.
* doh! !== instead of ===
* also skip attachment.cgi page
Diffstat (limited to 'data/bzpage.js')
-rw-r--r-- | data/bzpage.js | 1 |
1 files changed, 1 insertions, 0 deletions
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); |