LH shows, if someone is transmitting

This commit is contained in:
dg9vh 2016-05-04 14:59:45 +02:00
parent d9694aaa23
commit dfd5ff333a

View file

@ -32,9 +32,13 @@ for ($i = 0; ($i < LHLINES) AND ($i < count($lastHeard)); $i++) {
echo"<td>$listElem[3]</td>";
echo"<td>$listElem[4]</td>";
echo"<td>$listElem[5]</td>";
echo"<td>$listElem[6]</td>";
echo"<td>$listElem[7]</td>";
echo"<td>$listElem[8]</td>";
if ($listElem[6] == null) {
echo'<td colspan="3">transmitting</td>';
} else {
echo"<td>$listElem[6]</td>";
echo"<td>$listElem[7]</td>";
echo"<td>$listElem[8]</td>";
}
echo"</tr>\n";
}