diff --git a/src/classes/msgparsers/msgparser.apache2.class.php b/src/classes/msgparsers/msgparser.apache2.class.php index d8a1dc1..4a3c29a 100644 --- a/src/classes/msgparsers/msgparser.apache2.class.php +++ b/src/classes/msgparsers/msgparser.apache2.class.php @@ -56,9 +56,12 @@ class MsgParser_apache2 extends MsgParser { public $_ClassHelpArticle = "http://www.monitorware.com/Common/en/Articles/setup_mwagent_webserverlogging_phplogcon_mysql.php"; // Constructor - public function MsgParser_apache2() { + public function __construct () { return; // Nothing } + public function MsgParser_apache2() { + self::__construct(); + } /** * ParseLine diff --git a/src/classes/msgparsers/msgparser.apache2common.class.php b/src/classes/msgparsers/msgparser.apache2common.class.php index 98a11ec..c5aa364 100644 --- a/src/classes/msgparsers/msgparser.apache2common.class.php +++ b/src/classes/msgparsers/msgparser.apache2common.class.php @@ -56,9 +56,12 @@ class MsgParser_apache2common extends MsgParser { public $_ClassHelpArticle = "http://www.monitorware.com/Common/en/Articles/setup_mwagent_webserverlogging_phplogcon_mysql.php"; // Constructor - public function MsgParser_apache2common() { + public function __construct () { return; // Nothing } + public function MsgParser_apache2common() { + self::__construct(); + } /** * ParseLine diff --git a/src/classes/msgparsers/msgparser.eventlog.class.php b/src/classes/msgparsers/msgparser.eventlog.class.php index 5ff46e3..2e730f7 100644 --- a/src/classes/msgparsers/msgparser.eventlog.class.php +++ b/src/classes/msgparsers/msgparser.eventlog.class.php @@ -54,9 +54,12 @@ class MsgParser_eventlog extends MsgParser { public $_ClassHelpArticle = "http://www.monitorware.com/en/Articles/"; // Constructor - public function MsgParser_eventlog() { + public function __construct () { return; // Nothing } + public function MsgParser_eventlog() { + self::__construct(); + } /** * ParseLine diff --git a/src/classes/msgparsers/msgparser.iis.class.php b/src/classes/msgparsers/msgparser.iis.class.php index 181fbc0..b970495 100644 --- a/src/classes/msgparsers/msgparser.iis.class.php +++ b/src/classes/msgparsers/msgparser.iis.class.php @@ -54,9 +54,12 @@ class MsgParser_iis extends MsgParser { public $_ClassHelpArticle = "http://www.monitorware.com/en/Articles/"; // Constructor - public function MsgParser_iis() { + public function __construct () { return; // Nothing } + public function MsgParser_iis() { + self::__construct(); + } /** * ParseLine diff --git a/src/classes/msgparsers/msgparser.wireless.class.php b/src/classes/msgparsers/msgparser.wireless.class.php index 9c2800c..57b8d1e 100644 --- a/src/classes/msgparsers/msgparser.wireless.class.php +++ b/src/classes/msgparsers/msgparser.wireless.class.php @@ -54,12 +54,13 @@ class MsgParser_wireless extends MsgParser { ); // Constructor - public function MsgParser_wireless() { - -// TODO AUTOMATICALLY PERFORM FIELD INSERTS! - + public function __construct () { + // TODO AUTOMATICALLY PERFORM FIELD INSERTS! return; // Nothing } + public function MsgParser_wireless() { + self::__construct(); + } /** * ParseLine