diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-02-17 18:15:57 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-02-17 18:15:57 +0100 |
commit | 66275e3a326dc771c04cb6fbfdee68f09b66ee6c (patch) | |
tree | 656776034af77dbd7e13881a7f746e42908df1fa /data/rhbzpage.js | |
parent | 180be96ea28f4c9e6507f5e018f39e117480667b (diff) | |
download | bugzilla-triage-66275e3a326dc771c04cb6fbfdee68f09b66ee6c.tar.gz |
Make queryLocal and XML-RPC generally work again.
Diffstat (limited to 'data/rhbzpage.js')
-rw-r--r-- | data/rhbzpage.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/data/rhbzpage.js b/data/rhbzpage.js index ce0d3fd..15bbd0c 100644 --- a/data/rhbzpage.js +++ b/data/rhbzpage.js @@ -172,7 +172,7 @@ function addAttachment(data, callback, param) { }); postMessage(new Message("MakeXMLRPCall", { - url: constantData.XMLRPCData[window.location.hostname], + url: constantData.XMLRPCData[window.location.hostname].url, login: getLogin(), method: "bugzilla.addAttachment", params: params, @@ -658,6 +658,7 @@ function fillInChipMagic(XorgLogAttList, XorgLogAttListIndex) { replace(/[\s"]+/g," ").trim(); // that.packages["rh-xorg"].chipMagic.chipMagic = interestingLine+"\t"+interestingArray[1] // .toUpperCase(); + console.log("interestingLineArr = " + interestingLineArr.toSource()); createNewButton("status_whiteboard", true, { "name": "Fill In", "chipMagic": true @@ -781,7 +782,7 @@ function fixAttachById(id, type, email) { }); postMessage(new Message("MakeXMLRPCall", { - url: constantData.XMLRPCData[window.location.hostname], + url: constantData.XMLRPCData[window.location.hostname].url, login: getLogin(), method: "bugzilla.updateAttachMimeType", params: params, |