Bugfixing - reverted colspan...
This commit is contained in:
parent
54b23468d0
commit
56da1165e4
3 changed files with 4 additions and 4 deletions
|
@ -34,7 +34,7 @@ for ($i = 0; ($i < $totalLH); $i++) {
|
|||
echo"<tr>";
|
||||
echo"<td nowrap>$listElem[0]</td>";
|
||||
echo"<td nowrap>$listElem[1]</td>";
|
||||
if (constant("SHOWQRZ")) {
|
||||
if (constant("SHOWQRZ") && $listElem[2] !== "??????????") {
|
||||
echo"<td nowrap><a target=\"_new\" href=\"https://qrz.com/db/$listElem[2]\">".str_replace("0","Ø",$listElem[2])."</a></td>";
|
||||
} else {
|
||||
echo"<td nowrap>".str_replace("0","Ø",$listElem[2])."</td>";
|
||||
|
@ -52,7 +52,7 @@ for ($i = 0; ($i < $totalLH); $i++) {
|
|||
if ($listElem[6] == null) {
|
||||
echo'<td nowrap>transmitting</td><td></td><td></td>';
|
||||
} else if ($listElem[6] == "SMS") {
|
||||
echo'<td nowrap colspan=\"3\">sending or receiving SMS</td>';
|
||||
echo'<td nowrap>sending or receiving SMS</td><td></td><td></td>';
|
||||
} else {
|
||||
echo"<td nowrap>$listElem[6]</td>";
|
||||
echo"<td nowrap>$listElem[7]</td>";
|
||||
|
|
|
@ -62,7 +62,7 @@ if (defined("ENABLEMANAGEMENT")) {
|
|||
}
|
||||
checkSetup();
|
||||
// Here you can feel free to disable info-sections by commenting out with // before include
|
||||
include "include/txinfo.php";
|
||||
//include "include/txinfo.php";
|
||||
include "include/sysinfo.php";
|
||||
include "include/disk.php";
|
||||
include "include/repeaterinfo.php";
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
define("VERSION", "20160916-1");
|
||||
define("VERSION", "20160916-2");
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue