mod_xmlrpc: Fixed typos

Sat, 25 Jul 2009 19:46:17 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Sat, 25 Jul 2009 19:46:17 +0500
changeset 1590
638761692663
parent 1589
812ae3be7bed
child 1591
aaa1bcb7af98

mod_xmlrpc: Fixed typos

plugins/mod_xmlrpc.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_xmlrpc.lua	Sat Jul 25 19:18:37 2009 +0500
+++ b/plugins/mod_xmlrpc.lua	Sat Jul 25 19:46:17 2009 +0500
@@ -67,14 +67,14 @@
 end
 
 local function handle_xmlrpc_request(jid, method, args)
-	local is_secure_call = (method:sub(1,7) ~= "secure/");
+	local is_secure_call = (method:sub(1,7) == "secure/");
 	if not is_admin(jid) and not is_secure_call then
 		return create_error_response(401, "not authorized");
 	end
 	method = get_method(method);
 	if not method then return create_error_response(404, "method not found"); end
 	args = args or {};
-	if is_secure_call then t_insert(args, 1, jid); end
+	if is_secure_call then table.insert(args, 1, jid); end
 	local success, result = pcall(method, unpack(args));
 	if success then
 		success, result = pcall(create_response, result or "nil");

mercurial