2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

FHEMWEB: Remove // as it is not 5.8.6 compatible (Forum #33909)

git-svn-id: https://svn.fhem.de/fhem/trunk@8019 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-02-17 14:25:00 +00:00
parent f3e9740f7d
commit 4ee525148c

View File

@ -2432,7 +2432,7 @@ FW_devState($$@)
($icon, $link, $isHtml) = FW_dev2image($d);
$txt = ($isHtml ? $icon : FW_makeImage($icon, $state)) if($icon);
my $cmdlist = $link // "";
my $cmdlist = (defined($link) ? $link : "");
my $h = "";
foreach my $cmd (split(":", $cmdlist)) {
my $htmlTxt;