mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
2nd Nix fix
This commit is contained in:
+1
-1
@@ -43,6 +43,6 @@ void QueryServ::SendQuery(std::string Query){
|
||||
}
|
||||
|
||||
void QueryServ::PlayerLogEvent(int Event_Type, int Character_ID, std::string Event_Desc){
|
||||
std::string query = StringFormat("INSERT INTO `qs_player_events` (event, char_id, event_desc, time) VALUES (%i, %i, '%s', UNIX_TIMESTAMP(now()))", Event_Type, Character_ID, EscapeString(Event_Desc.c_str()));
|
||||
std::string query = StringFormat("INSERT INTO `qs_player_events` (event, char_id, event_desc, time) VALUES (%i, %i, '%s', UNIX_TIMESTAMP(now()))", Event_Type, Character_ID, EscapeString(Event_Desc));
|
||||
SendQuery(query);
|
||||
}
|
||||
Reference in New Issue
Block a user