mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-25 18:59:12 +02:00
Merge branch 'v2-stable' into beta
This commit is contained in:
commit
142326456d
@ -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++;
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user