replaced 0 with \&Oslash\; in callsigns

This commit is contained in:
dg9vh 2016-09-15 20:41:03 +00:00
parent 6a564c6292
commit 882f752ab6
3 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@ for ($i = 0; ($i < $totalLH); $i++) {
echo"<tr>";
echo"<td nowrap>$listElem[0]</td>";
echo"<td nowrap>$listElem[1]</td>";
echo"<td nowrap>$listElem[2]</td>";
echo"<td nowrap>".str_replace("0","&Oslash;",$listElem[2])."</td>";
if (defined("ENABLEXTDLOOKUP")) {
echo "<td nowrap>".getName($listElem[2])."</td>";
}

View file

@ -38,7 +38,7 @@ for ($i = 0; $i < count($localTXList); $i++) {
echo"<tr>";
echo"<td nowrap>$listElem[0]</td>";
echo"<td nowrap>$listElem[1]</td>";
echo"<td nowrap>$listElem[2]</td>";
echo"<td nowrap>".str_replace("0","&Oslash;",$listElem[2])."</td>";
if (defined("ENABLEXTDLOOKUP")) {
echo "<td class=\"nowrap\">".getName($listElem[2])."</td>";
}

View file

@ -14,7 +14,7 @@ foreach ($lastHeard as $listElem) {
if ($listElem[6] == null) {
echo"<td nowrap>$listElem[0]</td>";
echo"<td nowrap>$listElem[1]</td>";
echo"<td nowrap>$listElem[2]</td>";
echo"<td nowrap>".str_replace("0","&Oslash;",$listElem[2])."</td>";
if (defined("ENABLEXTDLOOKUP")) {
echo "<td nowrap>".getName($listElem[2])."</td>";
}