Skip to content

Commit

Permalink
[Zend_Db_Select] Removed needless concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
froschdesign authored and Dimitris Giotas committed Jun 17, 2016
1 parent a3a0dd8 commit c9b5589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Db/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ protected function _renderColumns($sql)
}
}

return $sql .= ' ' . implode(', ', $columns);
return $sql . ' ' . implode(', ', $columns);
}

/**
Expand Down

0 comments on commit c9b5589

Please sign in to comment.