# HG changeset patch # User Waqas Hussain # Date 1293464761 -18000 # Node ID a20a41e512f8bbdf95c53bcb2d0429d055d1a6d2 # Parent 2b0b8fe68df2a6c02d4055fc6bf4c8ae9537f63a usermanager: Assume authentication="anonymous" when anonymous_login=true. diff -r 2b0b8fe68df2 -r a20a41e512f8 core/usermanager.lua --- 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