From 36dcfd2b80b36dc2cc6aa350b0c8102347c28ccc Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 11 Oct 2009 10:23:16 -0700 Subject: * Changed logic of enabling LLProxyLoginModule to follow the new style -- true/false on the name, rather than gridmode=true. * Better error messages on Add/Remove clients. --- OpenSim/Client/Linden/LLProxyLoginModule.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Client') diff --git a/OpenSim/Client/Linden/LLProxyLoginModule.cs b/OpenSim/Client/Linden/LLProxyLoginModule.cs index f9cb3a9..2da774f 100644 --- a/OpenSim/Client/Linden/LLProxyLoginModule.cs +++ b/OpenSim/Client/Linden/LLProxyLoginModule.cs @@ -76,10 +76,10 @@ namespace OpenSim.Client.Linden public void Initialise(IConfigSource source) { - IConfig startupConfig = source.Configs["Startup"]; + IConfig startupConfig = source.Configs["Modules"]; if (startupConfig != null) { - m_enabled = startupConfig.GetBoolean("gridmode", false); + m_enabled = startupConfig.GetBoolean("LLProxyLoginModule", false); } } -- cgit v1.1