diff options
author | Homer Horwitz | 2008-11-15 21:27:10 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-11-15 21:27:10 +0000 |
commit | 9a6cdf662b60e7d6f6843826da6a84637d4798b9 (patch) | |
tree | 0ac44924346d5c94b355844ccee83612a3c96ad2 /OpenSim/Data/MSSQL/MSSQLRegionData.cs | |
parent | - Change llSetRot behavior so it matches the SL behavior (in particular, the (diff) | |
download | opensim-SC_OLD-9a6cdf662b60e7d6f6843826da6a84637d4798b9.zip opensim-SC_OLD-9a6cdf662b60e7d6f6843826da6a84637d4798b9.tar.gz opensim-SC_OLD-9a6cdf662b60e7d6f6843826da6a84637d4798b9.tar.bz2 opensim-SC_OLD-9a6cdf662b60e7d6f6843826da6a84637d4798b9.tar.xz |
Mantis#2626: Thank you Ruud Lathrop, for a patch that cleans up MSSQL code.
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLRegionData.cs')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLRegionData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLRegionData.cs b/OpenSim/Data/MSSQL/MSSQLRegionData.cs index be50cc6..95f6037 100644 --- a/OpenSim/Data/MSSQL/MSSQLRegionData.cs +++ b/OpenSim/Data/MSSQL/MSSQLRegionData.cs | |||
@@ -73,7 +73,7 @@ namespace OpenSim.Data.MSSQL | |||
73 | /// <param name="connectionString">The connection string.</param> | 73 | /// <param name="connectionString">The connection string.</param> |
74 | public void Initialise(string connectionString) | 74 | public void Initialise(string connectionString) |
75 | { | 75 | { |
76 | if (string.IsNullOrEmpty(connectionString)) | 76 | if (!string.IsNullOrEmpty(connectionString)) |
77 | { | 77 | { |
78 | //Add MSSQLManager (dont know if we need it) | 78 | //Add MSSQLManager (dont know if we need it) |
79 | _Database = new MSSQLManager(connectionString); | 79 | _Database = new MSSQLManager(connectionString); |