aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client
diff options
context:
space:
mode:
authorDiva Canto2009-10-11 10:23:16 -0700
committerDiva Canto2009-10-11 10:23:16 -0700
commit36dcfd2b80b36dc2cc6aa350b0c8102347c28ccc (patch)
tree3d3271b7c099037c12dc29b0fb9742b6201be9c9 /OpenSim/Client
parentsync PrimMesher with r46 (diff)
downloadopensim-SC_OLD-36dcfd2b80b36dc2cc6aa350b0c8102347c28ccc.zip
opensim-SC_OLD-36dcfd2b80b36dc2cc6aa350b0c8102347c28ccc.tar.gz
opensim-SC_OLD-36dcfd2b80b36dc2cc6aa350b0c8102347c28ccc.tar.bz2
opensim-SC_OLD-36dcfd2b80b36dc2cc6aa350b0c8102347c28ccc.tar.xz
* 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.
Diffstat (limited to 'OpenSim/Client')
-rw-r--r--OpenSim/Client/Linden/LLProxyLoginModule.cs4
1 files changed, 2 insertions, 2 deletions
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
76 76
77 public void Initialise(IConfigSource source) 77 public void Initialise(IConfigSource source)
78 { 78 {
79 IConfig startupConfig = source.Configs["Startup"]; 79 IConfig startupConfig = source.Configs["Modules"];
80 if (startupConfig != null) 80 if (startupConfig != null)
81 { 81 {
82 m_enabled = startupConfig.GetBoolean("gridmode", false); 82 m_enabled = startupConfig.GetBoolean("LLProxyLoginModule", false);
83 } 83 }
84 } 84 }
85 85