Merge branch 'v2-stable' into beta

This commit is contained in:
Andre Lorbach 2009-03-20 16:25:40 +01:00
commit 142326456d
2 changed files with 5 additions and 3 deletions

View File

@ -1058,8 +1058,9 @@ class LogStreamDB extends LogStream {
// Check if result was successfull!
if ( $myRow === FALSE || !$myRow )
break;
$this->bufferedRecords[$iBegin] = $myRow;
// Keys will be converted into lowercase!
$this->bufferedRecords[$iBegin] = array_change_key_case($myRow, CASE_LOWER);
$iBegin++;
}

View File

@ -1057,7 +1057,8 @@ class LogStreamPDO extends LogStream {
if ( $myRow === FALSE || !$myRow )
break;
$this->bufferedRecords[$iBegin] = $myRow;
// Keys will be converted into lowercase!
$this->bufferedRecords[$iBegin] = array_change_key_case($myRow);
$iBegin++;
// Increment counter