aboutsummaryrefslogtreecommitdiffstats
path: root/data/rhlib/fixingAttMIME.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2013-08-05 01:58:42 +0200
committerMatěj Cepl <mcepl@redhat.com>2013-08-05 02:18:44 +0200
commit8aef88830a0b66fd5ee4bc540b0eed534cad234e (patch)
tree18c01b068e454f4053e087bf166630ff34d6ba13 /data/rhlib/fixingAttMIME.js
parent961b0907b91f9832a5517ade4b2ec35f918a4658 (diff)
downloadbugzilla-triage-8aef88830a0b66fd5ee4bc540b0eed534cad234e.tar.gz
Fix use of RPC calls with Bugzilla 4.4.
Diffstat (limited to 'data/rhlib/fixingAttMIME.js')
-rw-r--r--data/rhlib/fixingAttMIME.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/data/rhlib/fixingAttMIME.js b/data/rhlib/fixingAttMIME.js
index 56e10ba..dceb47d 100644
--- a/data/rhlib/fixingAttMIME.js
+++ b/data/rhlib/fixingAttMIME.js
@@ -63,8 +63,8 @@ function fixAttachById(bugId, id, type, email) {
email = 0;
}
- // https://bugzilla.redhat.com/\
- // docs/en/html/api/extensions/compat_xmlrpc/code/webservice.html
+ // https://bugzilla.redhat.com/docs/en/html/api/extensions/RedHat\
+ // /lib/WebService/Bugzilla.html
// test on https://bugzilla.redhat.com/show_bug.cgi?id=485145
var params = {
'id': bugId,
@@ -73,7 +73,6 @@ function fixAttachById(bugId, id, type, email) {
'nomail' : email
};
- // makeJSONRPCCall("bugzilla.updateAttachMimeType", params, XMLRPCcallback);
makeJSONRPCCall("RedHat.updateAttachMimeType", params, XMLRPCcallback);
reqCounter++;
}