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/MSSQLEstateData.cs | |
parent | - Change llSetRot behavior so it matches the SL behavior (in particular, the (diff) | |
download | opensim-SC-9a6cdf662b60e7d6f6843826da6a84637d4798b9.zip opensim-SC-9a6cdf662b60e7d6f6843826da6a84637d4798b9.tar.gz opensim-SC-9a6cdf662b60e7d6f6843826da6a84637d4798b9.tar.bz2 opensim-SC-9a6cdf662b60e7d6f6843826da6a84637d4798b9.tar.xz |
Mantis#2626: Thank you Ruud Lathrop, for a patch that cleans up MSSQL code.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLEstateData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLEstateData.cs b/OpenSim/Data/MSSQL/MSSQLEstateData.cs index b3595d9..56855f6 100644 --- a/OpenSim/Data/MSSQL/MSSQLEstateData.cs +++ b/OpenSim/Data/MSSQL/MSSQLEstateData.cs | |||
@@ -56,7 +56,7 @@ namespace OpenSim.Data.MSSQL | |||
56 | /// <param name="connectionString">connectionString.</param> | 56 | /// <param name="connectionString">connectionString.</param> |
57 | public void Initialise(string connectionString) | 57 | public void Initialise(string connectionString) |
58 | { | 58 | { |
59 | if (string.IsNullOrEmpty(connectionString)) | 59 | if (!string.IsNullOrEmpty(connectionString)) |
60 | { | 60 | { |
61 | _Database = new MSSQLManager(connectionString); | 61 | _Database = new MSSQLManager(connectionString); |
62 | } | 62 | } |