Commit 8041c0f4 authored by Alexander Butenko's avatar Alexander Butenko

Merge pull request #314 from avbdr/master

Fix a typo
parents 2bfea28e c5707a64
...@@ -428,9 +428,9 @@ class MysqliDb ...@@ -428,9 +428,9 @@ class MysqliDb
if ($option == 'MYSQLI_NESTJOIN') if ($option == 'MYSQLI_NESTJOIN')
$this->_nestJoin = true; $this->_nestJoin = true;
else if ($option == 'MYSQLI_FOR_UPDATE') else if ($option == 'FOR UPDATE')
$this->_forUpdate = true; $this->_forUpdate = true;
else if ($option == 'MYSQLI_LOCK_IN_SHARE_MODE') else if ($option == 'LOCK IN SHARE MODE')
$this->_lockInShareMode = true; $this->_lockInShareMode = true;
else else
$this->_queryOptions[] = $option; $this->_queryOptions[] = $option;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment