Fixed local-tx-list after removing D-Star...
This commit is contained in:
parent
2e367cbbd8
commit
34210147a7
1 changed files with 4 additions and 3 deletions
7
ajax.php
7
ajax.php
|
@ -30,7 +30,6 @@ $logLinesMMDVM = getMMDVMLog();
|
||||||
$reverseLogLinesMMDVM = $logLinesMMDVM;
|
$reverseLogLinesMMDVM = $logLinesMMDVM;
|
||||||
rsort($reverseLogLinesMMDVM);
|
rsort($reverseLogLinesMMDVM);
|
||||||
|
|
||||||
|
|
||||||
if (defined("ENABLEDAPNETGATEWAY")) {
|
if (defined("ENABLEDAPNETGATEWAY")) {
|
||||||
$logLinesDAPNETGateway = getDAPNETGatewayLog();
|
$logLinesDAPNETGateway = getDAPNETGatewayLog();
|
||||||
showLapTime("getDAPNETGatewayLog");
|
showLapTime("getDAPNETGatewayLog");
|
||||||
|
@ -112,7 +111,8 @@ if ($_GET['section'] == "localTx") {
|
||||||
}
|
}
|
||||||
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 (getEnabled("D-Star", $mmdvmconfigs) == 1 && $listElem[6] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25" || $listElem[1]=="NXDN") || \
|
||||||
|
getEnabled("D-Star", $mmdvmconfigs) == 0 && $listElem[5] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25" || $listElem[1]=="NXDN")) {
|
||||||
$listElem[3] = getName($call_canon);
|
$listElem[3] = getName($call_canon);
|
||||||
if ($listElem[2] !== "??????????") {
|
if ($listElem[2] !== "??????????") {
|
||||||
if (!is_numeric($listElem[2])) {
|
if (!is_numeric($listElem[2])) {
|
||||||
|
@ -130,7 +130,8 @@ if ($_GET['section'] == "localTx") {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
//$listElem[10] ="";
|
//$listElem[10] ="";
|
||||||
if ($listElem[5] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25" || $listElem[1]=="NXDN")) {
|
if (getEnabled("D-Star", $mmdvmconfigs) == 1 && $listElem[5] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25" || $listElem[1]=="NXDN") || \
|
||||||
|
getEnabled("D-Star", $mmdvmconfigs) == 0 && $listElem[4] == "RF" && ($listElem[1]=="D-Star" || startsWith($listElem[1], "DMR") || $listElem[1]=="YSF" || $listElem[1]=="P25" || $listElem[1]=="NXDN")) {
|
||||||
if ($listElem[2] !== "??????????") {
|
if ($listElem[2] !== "??????????") {
|
||||||
if (!is_numeric($listElem[2])) {
|
if (!is_numeric($listElem[2])) {
|
||||||
if (defined("SHOWQRZ")) {
|
if (defined("SHOWQRZ")) {
|
||||||
|
|
Loading…
Reference in a new issue