replaced 0 with \Ø\; in callsigns
This commit is contained in:
parent
6a564c6292
commit
882f752ab6
3 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@ for ($i = 0; ($i < $totalLH); $i++) {
|
||||||
echo"<tr>";
|
echo"<tr>";
|
||||||
echo"<td nowrap>$listElem[0]</td>";
|
echo"<td nowrap>$listElem[0]</td>";
|
||||||
echo"<td nowrap>$listElem[1]</td>";
|
echo"<td nowrap>$listElem[1]</td>";
|
||||||
echo"<td nowrap>$listElem[2]</td>";
|
echo"<td nowrap>".str_replace("0","Ø",$listElem[2])."</td>";
|
||||||
if (defined("ENABLEXTDLOOKUP")) {
|
if (defined("ENABLEXTDLOOKUP")) {
|
||||||
echo "<td nowrap>".getName($listElem[2])."</td>";
|
echo "<td nowrap>".getName($listElem[2])."</td>";
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ for ($i = 0; $i < count($localTXList); $i++) {
|
||||||
echo"<tr>";
|
echo"<tr>";
|
||||||
echo"<td nowrap>$listElem[0]</td>";
|
echo"<td nowrap>$listElem[0]</td>";
|
||||||
echo"<td nowrap>$listElem[1]</td>";
|
echo"<td nowrap>$listElem[1]</td>";
|
||||||
echo"<td nowrap>$listElem[2]</td>";
|
echo"<td nowrap>".str_replace("0","Ø",$listElem[2])."</td>";
|
||||||
if (defined("ENABLEXTDLOOKUP")) {
|
if (defined("ENABLEXTDLOOKUP")) {
|
||||||
echo "<td class=\"nowrap\">".getName($listElem[2])."</td>";
|
echo "<td class=\"nowrap\">".getName($listElem[2])."</td>";
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ foreach ($lastHeard as $listElem) {
|
||||||
if ($listElem[6] == null) {
|
if ($listElem[6] == null) {
|
||||||
echo"<td nowrap>$listElem[0]</td>";
|
echo"<td nowrap>$listElem[0]</td>";
|
||||||
echo"<td nowrap>$listElem[1]</td>";
|
echo"<td nowrap>$listElem[1]</td>";
|
||||||
echo"<td nowrap>$listElem[2]</td>";
|
echo"<td nowrap>".str_replace("0","Ø",$listElem[2])."</td>";
|
||||||
if (defined("ENABLEXTDLOOKUP")) {
|
if (defined("ENABLEXTDLOOKUP")) {
|
||||||
echo "<td nowrap>".getName($listElem[2])."</td>";
|
echo "<td nowrap>".getName($listElem[2])."</td>";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue