update functions.php
In case of ENABLEXTDLOOKUP enabled, qrz.com can't resolve callsign if there is a suffix on it. Added the cut of the suffix before redirecting to qrz.com.
This commit is contained in:
parent
35f3d1dc7e
commit
70bb40a378
1 changed files with 4 additions and 0 deletions
|
@ -586,6 +586,10 @@ function getLastHeard($logLines, $onlyLast) {
|
||||||
if(!(array_search($listElem[2]."#".$listElem[1].$listElem[4], $heardCalls) > -1)) {
|
if(!(array_search($listElem[2]."#".$listElem[1].$listElem[4], $heardCalls) > -1)) {
|
||||||
// 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, "-"));
|
||||||
|
}
|
||||||
array_push($heardCalls, $listElem[2]."#".$listElem[1].$listElem[4]);
|
array_push($heardCalls, $listElem[2]."#".$listElem[1].$listElem[4]);
|
||||||
if (defined("ENABLEXTDLOOKUP")) {
|
if (defined("ENABLEXTDLOOKUP")) {
|
||||||
if ($listElem[2] !== "??????????") {
|
if ($listElem[2] !== "??????????") {
|
||||||
|
|
Loading…
Reference in a new issue