Merge pull request #196 from IZ7BOJ/patch-1
Update getActualLink in functions.php
This commit is contained in:
commit
25373a71d8
1 changed files with 21 additions and 1 deletions
|
@ -781,6 +781,26 @@ function getActualLink($logLines, $mode) {
|
||||||
return $to;
|
return $to;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( ($to == "") && file_exists('/tmp/YSFState.txt')) { // reflector is in yesterday's log
|
||||||
|
$logPath2 = YSFGATEWAYLOGPATH."/".YSFGATEWAYLOGPREFIX."-".date('Y-m-d',strtotime(date('Y-m-d').' -1 day')).".log"; //open yesterday's log
|
||||||
|
$logLines2 = explode("\n", `egrep -h "Linked to" $logPath2`);
|
||||||
|
$to = "";
|
||||||
|
foreach($logLines2 as $logLine) {
|
||||||
|
if ($logLine!=='') {
|
||||||
|
$to = substr($logLine, 37, 16);
|
||||||
|
if ($to == "MMDVM" )
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($to !== "") {
|
||||||
|
$fp = fopen('/tmp/YSFState.txt', 'w');
|
||||||
|
fwrite($fp, $to);
|
||||||
|
fclose($fp);
|
||||||
|
return $to;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
return _("YSFGateway not running");
|
return _("YSFGateway not running");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue