diff options
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLDataStore.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLDataStore.cs b/OpenSim/Data/MySQL/MySQLDataStore.cs index 69f9a16..7dc5b0c 100644 --- a/OpenSim/Data/MySQL/MySQLDataStore.cs +++ b/OpenSim/Data/MySQL/MySQLDataStore.cs | |||
@@ -729,13 +729,13 @@ namespace OpenSim.Data.MySQL | |||
729 | 729 | ||
730 | public RegionSettings LoadRegionSettings(LLUUID regionUUID) | 730 | public RegionSettings LoadRegionSettings(LLUUID regionUUID) |
731 | { | 731 | { |
732 | lock(m_dataSet) | 732 | lock (m_dataSet) |
733 | { | 733 | { |
734 | CheckConnection(); | 734 | CheckConnection(); |
735 | DataTable regionsettings = m_regionSettingsTable; | 735 | DataTable regionsettings = m_regionSettingsTable; |
736 | string searchExp = "regionUUID = '" + regionUUID.ToString() + "'"; | 736 | string searchExp = "regionUUID = '" + regionUUID.ToString() + "'"; |
737 | DataRow[] rawsettings = regionsettings.Select(searchExp); | 737 | DataRow[] rawsettings = regionsettings.Select(searchExp); |
738 | if(rawsettings.Length == 0) | 738 | if (rawsettings.Length == 0) |
739 | { | 739 | { |
740 | RegionSettings rs = new RegionSettings(); | 740 | RegionSettings rs = new RegionSettings(); |
741 | rs.RegionUUID = regionUUID; | 741 | rs.RegionUUID = regionUUID; |