Re-enables roundid creation again (#7754)

Co-authored-by: Raeschen <rycoop29@gmail.com>
This commit is contained in:
Selis
2024-02-16 11:55:18 +01:00
committed by GitHub
parent 615004fb01
commit 2f61a0c7f8
2 changed files with 16 additions and 13 deletions

View File

@@ -14,12 +14,17 @@
*/
// Run all strings to be used in an SQL query through this proc first to properly escape out injection attempts.
/proc/sanitizeSQL(var/t as text)
/proc/sanitizeSQL(var/t as text)
//var/sqltext = dbcon.Quote(t); //CHOMPEdit Begin
//return copytext(sqltext, 2, length(sqltext));//Quote() adds quotes around input, we already do that
return t
//CHOMPEdit End
// CHOMPEdit - Adds format_table_name
/proc/format_table_name(table as text)
//return CONFIG_GET(string/feedback_tableprefix) + table
return table // We don't implement tableprefix
/*
* Text sanitization
*/