fixed callsign lookup at qrz.com in txinfo
This commit is contained in:
parent
bef71b246a
commit
db804acbc4
2 changed files with 5 additions and 3 deletions
|
@ -19,11 +19,13 @@ foreach ($lastHeard as $listElem) {
|
|||
if ($listElem[7] == null) {
|
||||
echo"<td nowrap>$listElem[0]</td>";
|
||||
echo"<td nowrap>$listElem[1]</td>";
|
||||
if (constant("SHOWQRZ") && $listElem[2] !== "??????????" && !is_numeric($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><a target=\"_new\" href=\"http://dmr.darc.de/dmr-userreg.php?usrid=$listElem[2]\">".$listElem[2]."</td>";
|
||||
}
|
||||
}*/
|
||||
echo"<td nowrap>$listElem[2]</td>";
|
||||
|
||||
if (defined("ENABLEXTDLOOKUP")) {
|
||||
//echo "<td nowrap>".getName($listElem[2])."</td>";
|
||||
echo "<td nowrap>$listElem[3]</td>";
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
define("VERSION", "20161007-1");
|
||||
define("VERSION", "20161007-2");
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue