Merge pull request #246 from WeakSun/patch-3

修正两处错误
This commit is contained in:
ThinkPHP
2016-08-10 03:25:41 -05:00
committed by GitHub

View File

@@ -684,7 +684,7 @@ abstract class Builder
$this->parseWhere($options['where'], $options), $this->parseWhere($options['where'], $options),
$this->parseOrder($options['order']), $this->parseOrder($options['order']),
$this->parseLimit($options['limit']), $this->parseLimit($options['limit']),
$this->parseLimit($options['lock']), $this->parseLock($options['lock']),
$this->parseComment($options['comment']), $this->parseComment($options['comment']),
], $this->updateSql); ], $this->updateSql);
@@ -708,7 +708,7 @@ abstract class Builder
$this->parseWhere($options['where'], $options), $this->parseWhere($options['where'], $options),
$this->parseOrder($options['order']), $this->parseOrder($options['order']),
$this->parseLimit($options['limit']), $this->parseLimit($options['limit']),
$this->parseLimit($options['lock']), $this->parseLock($options['lock']),
$this->parseComment($options['comment']), $this->parseComment($options['comment']),
], $this->deleteSql); ], $this->deleteSql);