commit
35f3d1dc7e
1 changed files with 4 additions and 0 deletions
4
ajax.php
4
ajax.php
|
@ -86,6 +86,10 @@ if ($_GET['section'] == "localTx") {
|
||||||
$listElem = $localTXList[$i];
|
$listElem = $localTXList[$i];
|
||||||
// Generate a canonicalized call for QRZ and name lookups
|
// Generate a canonicalized call for QRZ and name lookups
|
||||||
$call_canon = preg_replace('/\s+\w$/', '', $listElem[2]);
|
$call_canon = preg_replace('/\s+\w$/', '', $listElem[2]);
|
||||||
|
//remove suffix used sometimes in YSF (es: -FT2 , -991)
|
||||||
|
if (strpos($call_canon,"-")!=false) {
|
||||||
|
$call_canon = substr($call_canon, 0, strpos($call_canon, "-"));
|
||||||
|
}
|
||||||
if (defined("ENABLEXTDLOOKUP")) {
|
if (defined("ENABLEXTDLOOKUP")) {
|
||||||
$listElem[11] ="";
|
$listElem[11] ="";
|
||||||
if ($listElem[6] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25" || $listElem[1]=="NXDN")) {
|
if ($listElem[6] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25" || $listElem[1]=="NXDN")) {
|
||||||
|
|
Loading…
Reference in a new issue