From 237e3b40e701daa82031f444b361ebe3d8e97e7f Mon Sep 17 00:00:00 2001 From: WeakSun Date: Wed, 10 Aug 2016 14:44:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=B8=A4=E5=A4=84=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修正两处错误 --- library/think/db/Builder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/think/db/Builder.php b/library/think/db/Builder.php index 6fbb8e46..24d20d49 100644 --- a/library/think/db/Builder.php +++ b/library/think/db/Builder.php @@ -684,7 +684,7 @@ abstract class Builder $this->parseWhere($options['where'], $options), $this->parseOrder($options['order']), $this->parseLimit($options['limit']), - $this->parseLimit($options['lock']), + $this->parseLock($options['lock']), $this->parseComment($options['comment']), ], $this->updateSql); @@ -708,7 +708,7 @@ abstract class Builder $this->parseWhere($options['where'], $options), $this->parseOrder($options['order']), $this->parseLimit($options['limit']), - $this->parseLimit($options['lock']), + $this->parseLock($options['lock']), $this->parseComment($options['comment']), ], $this->deleteSql);