removed reflector-numbers and ID-replys from QRZ.com-lookup
This commit is contained in:
parent
e3fac1dffd
commit
bad471d777
4 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") && $listElem[2] !== "??????????") {
|
||||
if (constant("SHOWQRZ") && $listElem[2] !== "??????????" && !is_numeric($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>";
|
||||
|
|
|
@ -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>";
|
||||
if (constant("SHOWQRZ")) {
|
||||
if (constant("SHOWQRZ") && $listElem[2] !== "??????????" && !is_numeric($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>";
|
||||
|
|
|
@ -14,7 +14,7 @@ foreach ($lastHeard as $listElem) {
|
|||
if ($listElem[6] == null) {
|
||||
echo"<td nowrap>$listElem[0]</td>";
|
||||
echo"<td nowrap>$listElem[1]</td>";
|
||||
if (constant("SHOWQRZ")) {
|
||||
if (constant("SHOWQRZ") && $listElem[2] !== "??????????" && !is_numeric($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>";
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
define("VERSION", "20160916-3");
|
||||
define("VERSION", "20160916-4");
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue