Skip to content

Commit

Permalink
Use ADODB-specific constant instead of 'false'
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Jul 7, 2014
1 parent 84d21a6 commit f9c2aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/database_api.php
Expand Up @@ -472,7 +472,7 @@ function db_fetch_array( IteratorAggregate &$p_result ) {
$p_result->MoveNext();
return $t_array;
} else {
$t_row = $p_result->GetRowAssoc( false );
$t_row = $p_result->GetRowAssoc( ADODB_ASSOC_CASE_LOWER );
static $s_array_result;
static $s_array_fields;

Expand Down

0 comments on commit f9c2aec

Please sign in to comment.