From 7838e85ff0b783db2d12880617de533c5037235c Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Fri, 11 Jan 2019 17:20:25 +0000 Subject: [PATCH] fix formatting --- functions.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.inc.php b/functions.inc.php index 34241383..193b1e99 100644 --- a/functions.inc.php +++ b/functions.inc.php @@ -321,8 +321,8 @@ function check_email($email) { /** * Clean a string, escaping any meta characters that could be - * used to disrupt an SQL string. The method of the escaping is dependent on the underlying DB - * and MAY NOT be just \' ing. (e.g. sqlite and PgSQL change "it's" to "it''s". + * used to disrupt an SQL string. The method of the escaping is dependent on the underlying DB + * and MAY NOT be just \' ing. (e.g. sqlite and PgSQL change "it's" to "it''s". * * The PDO quote function surrounds what you pass in with quote marks; for legacy reasons we remove these, * but assume the caller will actually add them back in (!).