SetAgreementFlag converted to StringFormat

This commit is contained in:
Arthur Ice 2014-07-10 17:16:16 -07:00
parent c1b69594e5
commit 3cf9c71c27

View File

@ -1824,10 +1824,8 @@ uint8 Database::GetAgreementFlag(uint32 acctid)
void Database::SetAgreementFlag(uint32 acctid)
{
char *query = nullptr;
QueryDatabase(query, MakeAnyLenString(&query, "UPDATE account SET rulesflag=1 where id=%i", acctid));
safe_delete_array(query);
std::string query = StringFormat("UPDATE account SET rulesflag=1 where id=%i", acctid);
QueryDatabase(query);
}
void Database::ClearRaid(uint32 rid) {