Commit 5b3c0ce6 authored by Alexander Butenko's avatar Alexander Butenko

Merge pull request #368 from avbdr/master

fix a typo
parents b02ed32c 549494d0
...@@ -1226,7 +1226,7 @@ class MysqliDb ...@@ -1226,7 +1226,7 @@ class MysqliDb
} }
$this->_query .= " " . $joinType . " JOIN " . $joinStr . $this->_query .= " " . $joinType . " JOIN " . $joinStr .
(false === stripos('using', $joinCondition) ? " " : " on ") (false !== stripos($joinCondition, 'using') ? " " : " on ")
. $joinCondition; . $joinCondition;
} }
} }
......
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