Fixing Actual Current Mode when disabled extdlookup and adding network-name after DMR-Master-address
This commit is contained in:
parent
bf8e180ee9
commit
c1893cd847
3 changed files with 3 additions and 3 deletions
|
@ -400,7 +400,7 @@ function getActualMode($metaLastHeard, $mmdvmconfigs) {
|
||||||
if (startsWith($mode, "DMR")) {
|
if (startsWith($mode, "DMR")) {
|
||||||
$mode = "DMR";
|
$mode = "DMR";
|
||||||
}
|
}
|
||||||
if ($listElem[7] ==="") {
|
if (defined("ENABLEXTDLOOKUP") && $listElem[7] == null || !defined("ENABLEXTDLOOKUP") && $listElem[6] == null) {
|
||||||
return "<span class=\"label label-danger\">".$mode."</span>";
|
return "<span class=\"label label-danger\">".$mode."</span>";
|
||||||
} else {
|
} else {
|
||||||
$now = new DateTime();
|
$now = new DateTime();
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
} else {
|
} else {
|
||||||
echo "<span class=\"label label-danger\" title=\"Master not connected\">";
|
echo "<span class=\"label label-danger\" title=\"Master not connected\">";
|
||||||
}
|
}
|
||||||
echo getConfigItem("DMR Network", "Address", $mmdvmconfigs)."</td>";
|
echo getConfigItem("DMR Network", "Address", $mmdvmconfigs)." (".getDMRNetwork().")</td>";
|
||||||
?>
|
?>
|
||||||
</span>
|
</span>
|
||||||
<td><span class="label <?php
|
<td><span class="label <?php
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<?php
|
<?php
|
||||||
define("VERSION", "20161102-1");
|
define("VERSION", "20161103-1");
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue