aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorDiva Canto2009-09-26 08:49:48 -0700
committerDiva Canto2009-09-26 08:49:48 -0700
commit632bb7126277b6e8b524b76fb181a079b51adcf4 (patch)
treea9efec379c4eb9c8ff5abf5efaab9a6fcbf96271 /OpenSim/Framework
parentMore redirects to HGGridConnector-as-HyperlinkService. (diff)
downloadopensim-SC_OLD-632bb7126277b6e8b524b76fb181a079b51adcf4.zip
opensim-SC_OLD-632bb7126277b6e8b524b76fb181a079b51adcf4.tar.gz
opensim-SC_OLD-632bb7126277b6e8b524b76fb181a079b51adcf4.tar.bz2
opensim-SC_OLD-632bb7126277b6e8b524b76fb181a079b51adcf4.tar.xz
Fixed MapBlocks bug, wrong order of arguments. First version that seems completely functional.
Also fixed the notification of the message server in standalone -- that server doesn't usually exist.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/NetworkServersInfo.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Framework/NetworkServersInfo.cs b/OpenSim/Framework/NetworkServersInfo.cs
index 3b00af3..7e66742 100644
--- a/OpenSim/Framework/NetworkServersInfo.cs
+++ b/OpenSim/Framework/NetworkServersInfo.cs
@@ -102,8 +102,7 @@ namespace OpenSim.Framework
102 ConfigSettings.DefaultInventoryServerHttpPort.ToString()); 102 ConfigSettings.DefaultInventoryServerHttpPort.ToString());
103 secureInventoryServer = config.Configs["Network"].GetBoolean("secure_inventory_server", true); 103 secureInventoryServer = config.Configs["Network"].GetBoolean("secure_inventory_server", true);
104 104
105 MessagingURL = config.Configs["Network"].GetString("messaging_server_url", 105 MessagingURL = config.Configs["Network"].GetString("messaging_server_url", string.Empty);
106 "http://127.0.0.1:" + ConfigSettings.DefaultMessageServerHttpPort);
107 } 106 }
108 } 107 }
109} 108}