Fixed bug in "EventLog Audit" and "EventLog Logon/Logoff" Report.

The dependency for the Checksum field was missing.
This commit is contained in:
Andre Lorbach 2012-12-04 15:01:23 +01:00
parent 65f3431275
commit c47be14517
2 changed files with 4 additions and 1 deletions

View File

@ -77,6 +77,9 @@ class Report_auditsummary extends Report {
$this->_arrProperties[] = SYSLOG_EVENT_LOGTYPE; $this->_arrProperties[] = SYSLOG_EVENT_LOGTYPE;
$this->_arrProperties[] = SYSLOG_EVENT_SOURCE; $this->_arrProperties[] = SYSLOG_EVENT_SOURCE;
$this->_arrProperties[] = SYSLOG_EVENT_USER; $this->_arrProperties[] = SYSLOG_EVENT_USER;
$this->_arrProperties[] = MISC_CHECKSUM;
// Init Customfilters Array // Init Customfilters Array
$this->_arrCustomFilters['_maxHosts'] = array ( 'InternalID' => '_maxHosts', $this->_arrCustomFilters['_maxHosts'] = array ( 'InternalID' => '_maxHosts',

View File

@ -75,7 +75,7 @@ class Report_logonlogoff extends Report {
$this->_arrProperties[] = SYSLOG_EVENT_SOURCE; $this->_arrProperties[] = SYSLOG_EVENT_SOURCE;
$this->_arrProperties[] = SYSLOG_EVENT_USER; $this->_arrProperties[] = SYSLOG_EVENT_USER;
// $this->_arrProperties[] = SYSLOG_MESSAGE; // $this->_arrProperties[] = SYSLOG_MESSAGE;
// $this->_arrProperties[] = MISC_CHECKSUM; $this->_arrProperties[] = MISC_CHECKSUM;
// Init Customfilters Array // Init Customfilters Array
$this->_arrCustomFilters['_maxHosts'] = array ( 'InternalID' => '_maxHosts', $this->_arrCustomFilters['_maxHosts'] = array ( 'InternalID' => '_maxHosts',