diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 3a6f41b..22748cc 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -761,7 +761,7 @@ namespace OpenSim.Services.LLLoginService | |||
761 | //find a exact match | 761 | //find a exact match |
762 | foreach(GridRegion r in regions) | 762 | foreach(GridRegion r in regions) |
763 | { | 763 | { |
764 | if(string.Equals(regionName, r.RegionName, StringComparison.CurrentCultureIgnoreCase)) | 764 | if(string.Equals(regionName, r.RegionName, StringComparison.InvariantCultureIgnoreCase)) |
765 | return r; | 765 | return r; |
766 | } | 766 | } |
767 | // else, whatever | 767 | // else, whatever |