Skip to content

Commit

Permalink
Wrap long line
Browse files Browse the repository at this point in the history
  • Loading branch information
lem9 committed Mar 3, 2013
1 parent 32d42df commit b7b77d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sql.php
Expand Up @@ -235,7 +235,9 @@

foreach ($values as $value) {
$select .= '<option value="' . $value . '"';
if ($value == $converted_curr_value || in_array($value , $selected_values , true)) {
if ($value == $converted_curr_value
|| in_array($value , $selected_values , true)
) {
$select .= ' selected="selected" ';
}
$select .= '>' . $value . '</option>';
Expand Down

0 comments on commit b7b77d1

Please sign in to comment.