bugfix
This commit is contained in:
parent
e95a0c7392
commit
c8e0121a7e
1 changed files with 4 additions and 2 deletions
|
@ -55,10 +55,12 @@ include "version.php";
|
|||
<?php
|
||||
$logourl = "";
|
||||
if (getDMRNetwork() == "BrandMeister") {
|
||||
$logourl = BRANDMEISTERLOGO;
|
||||
if (isset(BRANDMEISTERLOGO))
|
||||
$logourl = BRANDMEISTERLOGO;
|
||||
}
|
||||
if (getDMRNetwork() == "DMRplus") {
|
||||
$logourl = DMRPLUSLOGO;
|
||||
if (isset(DMRPLUSLOGO))
|
||||
$logourl = DMRPLUSLOGO;
|
||||
}
|
||||
if ($logourl == "") {
|
||||
$logourl = LOGO;
|
||||
|
|
Loading…
Reference in a new issue