aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xmlrpc.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-06-22 17:18:44 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-06-22 17:18:44 +0200
commitc1f7615fa2a5dcc15fa3ed7962016537dd31bbfd (patch)
treec166ac80ff488e8706161a4defb373ee71e13bcd /lib/xmlrpc.js
parent390f9042f82e4aaa6a57d08b9a5edfb38f688abf (diff)
downloadbugzilla-triage-c1f7615fa2a5dcc15fa3ed7962016537dd31bbfd.tar.gz
Make fixing MIME type again (includes creation of util.httpPOST)
- it is useful to have variable in the same module where the function using it is. - a lot of this magic and mystery - add this.win property - yuhooo, we have timer module, so I don't have to fish it from this.doc.defaultView (which doesn't work anyway)
Diffstat (limited to 'lib/xmlrpc.js')
-rw-r--r--lib/xmlrpc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmlrpc.js b/lib/xmlrpc.js
index f074f39..7ae622c 100644
--- a/lib/xmlrpc.js
+++ b/lib/xmlrpc.js
@@ -19,7 +19,7 @@ var XMLRPCMessage = exports.XMLRPCMessage = function XMLRPCMessage(methodname) {
this.method = methodname || "system.listMethods";
this.params = [];
return this;
-}
+};
XMLRPCMessage.prototype.setMethod = function(methodName) {
if (!methodName) return;