aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/MSSQLAssetData.cs
diff options
context:
space:
mode:
authorMelanie2010-02-24 16:00:06 +0000
committerMelanie2010-02-24 16:00:06 +0000
commit92029dc171b466f4bdaf0a882426f4202f3e6162 (patch)
tree925c71d103bfe70b96945dcb0102d5f3e755b3cd /OpenSim/Data/MSSQL/MSSQLAssetData.cs
parentMSSQL Additions for Presence Refactor branch. Most functionality tested and w... (diff)
downloadopensim-SC_OLD-92029dc171b466f4bdaf0a882426f4202f3e6162.zip
opensim-SC_OLD-92029dc171b466f4bdaf0a882426f4202f3e6162.tar.gz
opensim-SC_OLD-92029dc171b466f4bdaf0a882426f4202f3e6162.tar.bz2
opensim-SC_OLD-92029dc171b466f4bdaf0a882426f4202f3e6162.tar.xz
Remove some obsolete files from MSSQL. Fix a missing constructor arg that
was introdiced by the latest jhurlipatch
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLAssetData.cs')
-rw-r--r--OpenSim/Data/MSSQL/MSSQLAssetData.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLAssetData.cs b/OpenSim/Data/MSSQL/MSSQLAssetData.cs
index b1faf0b..d6ea262 100644
--- a/OpenSim/Data/MSSQL/MSSQLAssetData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLAssetData.cs
@@ -123,7 +123,8 @@ namespace OpenSim.Data.MSSQL
123 AssetBase asset = new AssetBase( 123 AssetBase asset = new AssetBase(
124 new UUID((Guid)reader["id"]), 124 new UUID((Guid)reader["id"]),
125 (string)reader["name"], 125 (string)reader["name"],
126 Convert.ToSByte(reader["assetType"]) 126 Convert.ToSByte(reader["assetType"]),
127 String.Empty
127 ); 128 );
128 // Region Main 129 // Region Main
129 asset.Description = (string)reader["description"]; 130 asset.Description = (string)reader["description"];