aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLAssetData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLAssetData.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLAssetData.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAssetData.cs b/OpenSim/Data/MySQL/MySQLAssetData.cs
index 83e7e4c..1488e1a 100644
--- a/OpenSim/Data/MySQL/MySQLAssetData.cs
+++ b/OpenSim/Data/MySQL/MySQLAssetData.cs
@@ -170,14 +170,6 @@ namespace OpenSim.Data.MySQL
170 } 170 }
171 171
172 string assetDescription = asset.Description; 172 string assetDescription = asset.Description;
173 if(assetDescription.Length > AssetBase.MAX_LMASSET_DESC)
174 {
175 if(asset.Type == (sbyte) AssetType.Landmark)
176 assetDescription = assetDescription.Substring(0, AssetBase.MAX_LMASSET_DESC);
177 else
178 assetDescription = assetDescription.Substring(0, AssetBase.MAX_ASSET_DESC);
179 }
180
181 if (asset.Description.Length > AssetBase.MAX_ASSET_DESC) 173 if (asset.Description.Length > AssetBase.MAX_ASSET_DESC)
182 { 174 {
183 assetDescription = asset.Description.Substring(0, AssetBase.MAX_ASSET_DESC); 175 assetDescription = asset.Description.Substring(0, AssetBase.MAX_ASSET_DESC);