From 86b8664862215c02f75743624b81429eb15e40b7 Mon Sep 17 00:00:00 2001 From: Min-Soo Kim Date: Sun, 27 Dec 2020 20:34:42 +0900 Subject: [PATCH] =?UTF-8?q?=ED=95=84=EC=9A=94=20=EC=97=86=EC=96=B4?= =?UTF-8?q?=EC=A7=84=20flag=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/framework/parsers/dbquery/variablebase.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/common/framework/parsers/dbquery/variablebase.php b/common/framework/parsers/dbquery/variablebase.php index 52a0793cc..616adde08 100644 --- a/common/framework/parsers/dbquery/variablebase.php +++ b/common/framework/parsers/dbquery/variablebase.php @@ -443,12 +443,6 @@ class VariableBase $where = ''; $params = array(); - // flag to mark transformed quotation mark. - $escaped_quot = false; - - // flag to mark escaped hypen in the quotation block - $escaped_hyphen = false; - // parse the value (text); $value = str_replace('"', '"', $value); $keywords = preg_split('/(\([^\)]*\))|(\-?\"[^\"]*\")|[\s,]+/', trim($value), 10, \PREG_SPLIT_NO_EMPTY | \PREG_SPLIT_DELIM_CAPTURE);