diff options
author | Diva Canto | 2013-03-02 17:54:19 -0800 |
---|---|---|
committer | Diva Canto | 2013-03-02 17:54:19 -0800 |
commit | e70c71a1758ed450444a6272f9afe4528ccf3abc (patch) | |
tree | 5dcdc7e8a3f94b7f6d83ae7fa5d8b6a2d05be668 /OpenSim/Region/Framework/Scenes | |
parent | Fixed typos in TempAttachmentsModule. No changes. (diff) | |
parent | Added existance and default value for [XEngine]MinTimerInterval to OpenSimDef... (diff) | |
download | opensim-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.cs | 12 |
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('|')) |