From dc92335fbe14d122448bdcb405637d76b236725e Mon Sep 17 00:00:00 2001 From: Corey D Date: Sun, 22 Aug 2021 10:51:05 +1000 Subject: [PATCH] Missed Database.Escape --- plugins/include/dbi.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/dbi.inc b/plugins/include/dbi.inc index 2a4ae3e3..85eae3e4 100644 --- a/plugins/include/dbi.inc +++ b/plugins/include/dbi.inc @@ -374,8 +374,8 @@ methodmap Database < Handle // the database's character set. // // NOTE: SourceMod only guarantees properly escaped strings when the query - // encloses the string in ''. While drivers tend to allow " instead, the string - // may be not be escaped (for example, on SQLite)! + // encloses the string in ''. While drivers tend to allow "" instead, + // the string may be not be escaped (for example, on SQLite)! // // @param string String to quote. // @param buffer Buffer to store quoted string in.