Skip to content

Commit 5b3c0ce

Browse files
committed
Merge pull request #368 from avbdr/master
fix a typo
2 parents b02ed32 + 549494d commit 5b3c0ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MysqliDb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ protected function _buildJoin()
12261226
}
12271227

12281228
$this->_query .= " " . $joinType . " JOIN " . $joinStr .
1229-
(false === stripos('using', $joinCondition) ? " " : " on ")
1229+
(false !== stripos($joinCondition, 'using') ? " " : " on ")
12301230
. $joinCondition;
12311231
}
12321232
}

0 commit comments

Comments
 (0)