diff options
author | Diva Canto | 2009-08-21 11:01:23 -0700 |
---|---|---|
committer | Diva Canto | 2009-08-21 11:01:23 -0700 |
commit | f9ee8be2bce8dd894f0db33f152c872695ac839d (patch) | |
tree | f3d09cb58ffe68ac95f9e4197435f4d837d00ded /OpenSim/Region/OptionalModules/Avatar | |
parent | Added a more sane InventoryServerMoveItemsHandler. Changed SynchronousRestObj... (diff) | |
parent | Fix Messaging server so -xmlfile actually works (diff) | |
download | opensim-SC_OLD-f9ee8be2bce8dd894f0db33f152c872695ac839d.zip opensim-SC_OLD-f9ee8be2bce8dd894f0db33f152c872695ac839d.tar.gz opensim-SC_OLD-f9ee8be2bce8dd894f0db33f152c872695ac839d.tar.bz2 opensim-SC_OLD-f9ee8be2bce8dd894f0db33f152c872695ac839d.tar.xz |
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/Chat/ChannelState.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/Chat/ChannelState.cs b/OpenSim/Region/OptionalModules/Avatar/Chat/ChannelState.cs index b61959f..3c5e8c9 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Chat/ChannelState.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Chat/ChannelState.cs | |||
@@ -213,7 +213,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Chat | |||
213 | m_log.DebugFormat("[IRC-Channel-{0}] AccessPassword : <{1}>", cs.idn, cs.AccessPassword); | 213 | m_log.DebugFormat("[IRC-Channel-{0}] AccessPassword : <{1}>", cs.idn, cs.AccessPassword); |
214 | string[] excludes = config.GetString("exclude_list", "").Trim().Split(new Char[] { ',' }); | 214 | string[] excludes = config.GetString("exclude_list", "").Trim().Split(new Char[] { ',' }); |
215 | cs.ExcludeList = new List<string>(excludes.Length); | 215 | cs.ExcludeList = new List<string>(excludes.Length); |
216 | foreach(string name in excludes) | 216 | foreach (string name in excludes) |
217 | { | 217 | { |
218 | cs.ExcludeList.Add(name.Trim().ToLower()); | 218 | cs.ExcludeList.Add(name.Trim().ToLower()); |
219 | } | 219 | } |