Skip to content

Commit

Permalink
Fixed #20824: ezoracledb->generateSQLINStatement - not working correc…
Browse files Browse the repository at this point in the history
…tly for items > 1000
  • Loading branch information
jjCavalleri committed May 9, 2013
1 parent bd956fe commit 3fff950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ezdb/dbms-drivers/ezoracledb.php
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ function generateSQLINStatement( $elements, $columnName = '', $not = false, $uni
}
$offset += $length;
}
$result = $columnName . ' ' . implode( $connector . ' ' . $columnName, $parts );
$result = ' ( ' . $columnName . implode( $connector . ' ' . $columnName, $parts ) . ' ) ';
}
else
{
Expand Down

0 comments on commit 3fff950

Please sign in to comment.