usermanager: Fixed a possible traceback when is_admin() was used on a component.
authorWaqas Hussain <waqas20@gmail.com>
Fri, 17 Dec 2010 22:54:34 +0500
changeset 3768 01cc9cbcbd52
parent 3767 3ba97d1d7a62
child 3769 9338d0785277
usermanager: Fixed a possible traceback when is_admin() was used on a component.
core/usermanager.lua
--- a/core/usermanager.lua	Fri Dec 17 17:11:04 2010 +0000
+++ b/core/usermanager.lua	Fri Dec 17 22:54:34 2010 +0500
@@ -120,7 +120,7 @@
 	end
 	
 	-- Still not an admin, check with auth provider
-	if not is_admin and host ~= "*" and hosts[host].users.is_admin then
+	if not is_admin and host ~= "*" and hosts[host].users and hosts[host].users.is_admin then
 		is_admin = hosts[host].users.is_admin(jid);
 	end
 	return is_admin or false;