From c47be14517619d587cf4f2c57c52b5ffb166a761 Mon Sep 17 00:00:00 2001 From: Andre Lorbach Date: Tue, 4 Dec 2012 15:01:23 +0100 Subject: [PATCH] Fixed bug in "EventLog Audit" and "EventLog Logon/Logoff" Report. The dependency for the Checksum field was missing. --- src/classes/reports/report.eventlog.auditsummary.class.php | 3 +++ src/classes/reports/report.eventlog.logonlogoff.class.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/classes/reports/report.eventlog.auditsummary.class.php b/src/classes/reports/report.eventlog.auditsummary.class.php index 779ccc6..f471d22 100644 --- a/src/classes/reports/report.eventlog.auditsummary.class.php +++ b/src/classes/reports/report.eventlog.auditsummary.class.php @@ -77,6 +77,9 @@ class Report_auditsummary extends Report { $this->_arrProperties[] = SYSLOG_EVENT_LOGTYPE; $this->_arrProperties[] = SYSLOG_EVENT_SOURCE; $this->_arrProperties[] = SYSLOG_EVENT_USER; + $this->_arrProperties[] = MISC_CHECKSUM; + + // Init Customfilters Array $this->_arrCustomFilters['_maxHosts'] = array ( 'InternalID' => '_maxHosts', diff --git a/src/classes/reports/report.eventlog.logonlogoff.class.php b/src/classes/reports/report.eventlog.logonlogoff.class.php index 0c47e2c..31c94d5 100644 --- a/src/classes/reports/report.eventlog.logonlogoff.class.php +++ b/src/classes/reports/report.eventlog.logonlogoff.class.php @@ -75,7 +75,7 @@ class Report_logonlogoff extends Report { $this->_arrProperties[] = SYSLOG_EVENT_SOURCE; $this->_arrProperties[] = SYSLOG_EVENT_USER; // $this->_arrProperties[] = SYSLOG_MESSAGE; -// $this->_arrProperties[] = MISC_CHECKSUM; + $this->_arrProperties[] = MISC_CHECKSUM; // Init Customfilters Array $this->_arrCustomFilters['_maxHosts'] = array ( 'InternalID' => '_maxHosts',