usermanager: Fix two nil global accesses

Sat, 31 Jul 2010 11:30:16 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 31 Jul 2010 11:30:16 +0100
changeset 3419
79e08dc3fd37
parent 3418
e75af8e6af54
child 3420
9be46a3466ef

usermanager: Fix two nil global accesses

core/usermanager.lua file | annotate | diff | comparison | revisions
--- a/core/usermanager.lua	Sat Jul 31 15:16:15 2010 +0500
+++ b/core/usermanager.lua	Sat Jul 31 11:30:16 2010 +0100
@@ -107,7 +107,7 @@
 					break;
 				end
 			end
-		elseif admins then
+		elseif host_admins then
 			log("error", "Option 'admins' for host '%s' is not a list", host);
 		end
 	end
@@ -120,7 +120,7 @@
 					break;
 				end
 			end
-		elseif admins then
+		elseif global_admins then
 			log("error", "Global option 'admins' is not a list");
 		end
 	end

mercurial