From 694a22a295c97505c0ff93a3efeba3a9dc23fa40 Mon Sep 17 00:00:00 2001 From: zhoucheng Date: Sat, 25 Feb 2017 22:30:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Mysqli=20quoteColumn=20=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E5=8F=82=E6=95=B0=E8=B0=83=E7=94=A8=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- var/Typecho/Db/Adapter/Mysqli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/var/Typecho/Db/Adapter/Mysqli.php b/var/Typecho/Db/Adapter/Mysqli.php index 066fe3e5..edf99660 100644 --- a/var/Typecho/Db/Adapter/Mysqli.php +++ b/var/Typecho/Db/Adapter/Mysqli.php @@ -128,7 +128,7 @@ class Typecho_Db_Adapter_Mysqli implements Typecho_Db_Adapter */ public function quoteColumn($string) { - return $resource->real_escape_string($string); + return $this->_dbLink->real_escape_string($string); } /**