Thanks Gavin Hird for a fix for Mantis 0007604: DeleteClassifiedRecord exception PGSQL

fsassets
dahlia 2015-06-24 04:08:34 -07:00
parent 2c5a3ff9f0
commit 3aa9e786de
1 changed files with 124 additions and 123 deletions

View File

@ -46,7 +46,8 @@ namespace OpenSim.Data.PGSQL
#region Properites
string ConnectionString
{
get; set;
get;
set;
}
protected virtual Assembly Assembly
@ -219,7 +220,7 @@ namespace OpenSim.Data.PGSQL
{
string query = string.Empty;
query = @"DELETE FROM classifieds WHERE classifieduuid = :ClasifiedId ;";
query = @"DELETE FROM classifieds WHERE classifieduuid = :ClassifiedId ;";
try
{