diff options
Diffstat (limited to 'src/Components')
-rw-r--r-- | src/Components/JoinKeyword.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Components/JoinKeyword.php b/src/Components/JoinKeyword.php index 529763b..28756ab 100644 --- a/src/Components/JoinKeyword.php +++ b/src/Components/JoinKeyword.php @@ -160,7 +160,7 @@ class JoinKeyword extends Component $ret = array(); foreach ($component as $c) { $ret[] = (($c->type === 'JOIN') ? 'JOIN ' : ($c->type . ' JOIN ')) - . $c->expr . ' ON ' . Condition::build($c->on); + . $c->expr . ' ON ' . Condition::build($c->on); } return implode(' ', $ret); } |