mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-22 05:25:15 +01:00
fix missing comma and argument name in edit query (#52127)
Co-authored-by: Jordie0608 <=>
This commit is contained in:
@@ -838,12 +838,12 @@
|
||||
var/datum/db_query/query_edit_ban = SSdbcore.NewQuery({"
|
||||
UPDATE [format_table_name("ban")]
|
||||
SET
|
||||
expiration_time = IF(:duration IS NULL, NULL, bantime + INTERVAL :duration [interval])
|
||||
expiration_time = IF(:duration IS NULL, NULL, bantime + INTERVAL :duration [interval]),
|
||||
applies_to_admins = :applies_to_admins,
|
||||
reason = :reason,
|
||||
ckey = :ckey,
|
||||
ip = INET_ATON(:ip),
|
||||
computerid = :ci
|
||||
computerid = :cid,
|
||||
edits = CONCAT(IFNULL(edits,''), :change_message)
|
||||
WHERE [where]
|
||||
"}, arguments)
|
||||
|
||||
Reference in New Issue
Block a user