aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes
diff options
context:
space:
mode:
authorDiva Canto2013-03-02 17:54:19 -0800
committerDiva Canto2013-03-02 17:54:19 -0800
commite70c71a1758ed450444a6272f9afe4528ccf3abc (patch)
tree5dcdc7e8a3f94b7f6d83ae7fa5d8b6a2d05be668 /OpenSim/Region/Framework/Scenes
parentFixed typos in TempAttachmentsModule. No changes. (diff)
parentAdded existance and default value for [XEngine]MinTimerInterval to OpenSimDef... (diff)
downloadopensim-SC_OLD-e70c71a1758ed450444a6272f9afe4528ccf3abc.zip
opensim-SC_OLD-e70c71a1758ed450444a6272f9afe4528ccf3abc.tar.gz
opensim-SC_OLD-e70c71a1758ed450444a6272f9afe4528ccf3abc.tar.bz2
opensim-SC_OLD-e70c71a1758ed450444a6272f9afe4528ccf3abc.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 5b61538..14dac7a 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -932,7 +932,12 @@ namespace OpenSim.Region.Framework.Scenes
932 } 932 }
933 } 933 }
934 934
935 string grant = startupConfig.GetString("AllowedClients", String.Empty); 935 string[] possibleAccessControlConfigSections = new string[] { "AccessControl", "Startup" };
936
937 string grant
938 = Util.GetConfigVarFromSections<string>(
939 config, "AllowedClients", possibleAccessControlConfigSections, "");
940
936 if (grant.Length > 0) 941 if (grant.Length > 0)
937 { 942 {
938 foreach (string viewer in grant.Split('|')) 943 foreach (string viewer in grant.Split('|'))
@@ -941,7 +946,10 @@ namespace OpenSim.Region.Framework.Scenes
941 } 946 }
942 } 947 }
943 948
944 grant = startupConfig.GetString("BannedClients", String.Empty); 949 grant
950 = Util.GetConfigVarFromSections<string>(
951 config, "BannedClients", possibleAccessControlConfigSections, "");
952
945 if (grant.Length > 0) 953 if (grant.Length > 0)
946 { 954 {
947 foreach (string viewer in grant.Split('|')) 955 foreach (string viewer in grant.Split('|'))