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

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

View File

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