Fix estate ban list persistence in MySQL and reenable tests

This commit is contained in:
Melanie Thielker
2009-02-18 18:48:59 +00:00
parent 1fa8a7ce29
commit 2d7c15c560
2 changed files with 1 additions and 16 deletions

View File

@@ -335,7 +335,7 @@ namespace OpenSim.Data.MySQL
cmd.Parameters.Clear();
cmd.CommandText = "insert into estateban (EstateID, bannedUUID) values ( ?EstateID, ?bannedUUID )";
cmd.CommandText = "insert into estateban (EstateID, bannedUUID, bannedIp, bannedIpHostMask, bannedNameMask) values ( ?EstateID, ?bannedUUID, '', '', '' )";
foreach (EstateBan b in es.EstateBans)
{