diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-09-04 02:02:36 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-09-04 02:02:36 +0200 |
commit | ca155b4e16d15d5ffd62d20ce42a7516c1f9c49c (patch) | |
tree | 701eaefa58b58530e24a4c5a66b25290ec1e21f7 /data/rhlib | |
parent | 3c1055ba0f1024133d5ffe5e98d95d00f3b97cbe (diff) | |
download | bugzilla-triage-ca155b4e16d15d5ffd62d20ce42a7516c1f9c49c.tar.gz |
Fix passwords and XML-RPC logins.
Make switching off XML-RPC per-domain not per-user (fixes #107).
Login just once per session and domain (fixes #113).
Diffstat (limited to 'data/rhlib')
-rw-r--r-- | data/rhlib/addAttachmentRow.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/rhlib/addAttachmentRow.js b/data/rhlib/addAttachmentRow.js index 6fab1bd..20541dc 100644 --- a/data/rhlib/addAttachmentRow.js +++ b/data/rhlib/addAttachmentRow.js @@ -37,8 +37,8 @@ function addAttachment(data, callback, param) { var params = []; if (!constantData.passwordState.passAvailable) { - console - .error("addAttachment : No password, no XML-RPC calls; sorry"); + console.log("addAttachment: No XML-RPC calls for " + + location.protocol + "//" + location.hostname); return null; } |