From 9125afb8c61f8ea6c44f97da5996e6ed8c4400d9 Mon Sep 17 00:00:00 2001 From: CT2JAY Date: Mon, 20 Feb 2017 11:18:52 +0000 Subject: [PATCH] You don't need Alias|0000 since it not used on Last Heard List - getMMDVMLog --- include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions.php b/include/functions.php index c8139b0..47ea34f 100644 --- a/include/functions.php +++ b/include/functions.php @@ -189,7 +189,7 @@ function getMMDVMLog() { // Open Logfile and copy loglines into LogLines-Array() $logPath = MMDVMLOGPATH."/".MMDVMLOGPREFIX."-".date("Y-m-d").".log"; //$logLines = explode("\n", `grep M: $logPath`); - $logLines = explode("\n", `egrep -h "from|end|watchdog|lost|Alias|0000" $logPath`); + $logLines = explode("\n", `egrep -h "from|end|watchdog|lost" $logPath`); return $logLines; }