close
Skip to content

Commit 857157f

Browse files
committed
removed extra tabs for better code alignment
1 parent b8b96e7 commit 857157f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

‎oracle8_9/ez_sql_oracle8_9.php‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -235,11 +235,11 @@ function query($query)
235235
// Fetch the column meta data
236236
for ( $i = 1; $i <= $num_cols; $i++ )
237237
{
238-
# Check is_object to rid the following PHP 4.5+ error
239-
# PHP Warning: Creating default object from empty value in ez_sql_oracle8_9.php on line xxx
240-
if ( !is_object($this->col_info) ) {
241-
$this->col_info[] = new stdClass;
242-
}
238+
# Check is_object to rid the following PHP 4.5+ error
239+
# PHP Warning: Creating default object from empty value in ez_sql_oracle8_9.php on line xxx
240+
if ( !is_object($this->col_info) ) {
241+
$this->col_info[] = new stdClass;
242+
}
243243

244244
$this->col_info[($i-1)]->name = @OCIColumnName($stmt,$i);
245245
$this->col_info[($i-1)]->type = @OCIColumnType($stmt,$i);

0 commit comments

Comments
 (0)