core/usermanager.lua

changeset 3982
a20a41e512f8
parent 3768
01cc9cbcbd52
--- a/core/usermanager.lua	Mon Dec 27 19:57:04 2010 +0500
+++ b/core/usermanager.lua	Mon Dec 27 20:46:01 2010 +0500
@@ -36,6 +36,7 @@
 	host_session.events.add_handler("item-added/auth-provider", function (event)
 		local provider = event.item;
 		local auth_provider = config.get(host, "core", "authentication") or default_provider;
+		if config.get(host, "core", "anonymous_login") then auth_provider = "anonymous"; end -- COMPAT 0.7
 		if provider.name == auth_provider then
 			host_session.users = provider;
 		end
@@ -51,6 +52,7 @@
 	end);
 	host_session.users = new_null_provider(); -- Start with the default usermanager provider
 	local auth_provider = config.get(host, "core", "authentication") or default_provider;
+	if config.get(host, "core", "anonymous_login") then auth_provider = "anonymous"; end -- COMPAT 0.7
 	if auth_provider ~= "null" then
 		modulemanager.load(host, "auth_"..auth_provider);
 	end

mercurial