* 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.
This commit is contained in:
Diva Canto
2009-10-11 10:23:16 -07:00
parent 7b4183d7a0
commit 36dcfd2b80
4 changed files with 8 additions and 4 deletions

View File

@@ -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);
}
}