diff options
author | Justin Clark-Casey (justincc) | 2012-06-16 04:12:53 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-16 04:12:53 +0100 |
commit | 7119de56ffb9c37b6baa57c5f30b81ac3f86c91c (patch) | |
tree | 5a6a6ded1d1eb4deafdcadb4723a9484115e88c2 /OpenSim | |
parent | Fix bug introduced in commit c6e3752 (13 Jun 2012) where poll responses would... (diff) | |
download | opensim-SC_OLD-7119de56ffb9c37b6baa57c5f30b81ac3f86c91c.zip opensim-SC_OLD-7119de56ffb9c37b6baa57c5f30b81ac3f86c91c.tar.gz opensim-SC_OLD-7119de56ffb9c37b6baa57c5f30b81ac3f86c91c.tar.bz2 opensim-SC_OLD-7119de56ffb9c37b6baa57c5f30b81ac3f86c91c.tar.xz |
Change read config paramter from max_urls_per_simulator to max_external_urls_per_simulator, which is what it was meant to be
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs index 77dfcc6..61afc76 100644 --- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | |||
@@ -113,7 +113,7 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp | |||
113 | IConfig llFunctionsConfig = config.Configs["LL-Functions"]; | 113 | IConfig llFunctionsConfig = config.Configs["LL-Functions"]; |
114 | 114 | ||
115 | if (llFunctionsConfig != null) | 115 | if (llFunctionsConfig != null) |
116 | m_TotalUrls = llFunctionsConfig.GetInt("max_urls_per_simulator", m_TotalUrls); | 116 | m_TotalUrls = llFunctionsConfig.GetInt("max_external_urls_per_simulator", m_TotalUrls); |
117 | } | 117 | } |
118 | 118 | ||
119 | public void PostInitialise() | 119 | public void PostInitialise() |