dg9vh 2016-11-22 22:58:05 +00:00
parent 923e57baf3
commit 36196cefd8
2 changed files with 7 additions and 1 deletions

View file

@ -18,7 +18,9 @@ $lastHeard = getLastHeard($reverseLogLinesMMDVM, True);
echo"<!--";
var_dump($lastHeard);
echo"-->";
$counter = 0;
foreach ($lastHeard as $listElem) {
$counter +=1;
if (defined("ENABLEXTDLOOKUP") && $listElem[7] == null || !defined("ENABLEXTDLOOKUP") && $listElem[6] == null) {
echo "<tr>";
echo"<td nowrap>$listElem[0]</td>";
@ -65,6 +67,10 @@ foreach ($lastHeard as $listElem) {
echo"<td nowrap>$diff s</td>";
}
echo "</tr>";
} else {
if ($counter == 1) {
echo "<tr><td colspan='7'></td></tr>";
}
}
}
?>

View file

@ -1,3 +1,3 @@
<?php
define("VERSION", "20161108-2");
define("VERSION", "20161122-1");
?>