zwave_alliancelinks.csv.gz: update (Forum #80979)

git-svn-id: https://svn.fhem.de/fhem/trunk@16151 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2018-02-11 15:05:53 +00:00
parent 621d747fb3
commit 84be0c8a44
2 changed files with 2 additions and 2 deletions

View File

@ -5142,7 +5142,7 @@ ZWave_fhemwebFn($$$$)
my $iodev = $defs{$d}{IODev}{NAME}; my $iodev = $defs{$d}{IODev}{NAME};
my $hs = AttrVal($iodev, "helpSites", $zwave_activeHelpSites); my $hs = AttrVal($iodev, "helpSites", $zwave_activeHelpSites);
for my $n (split(",", $hs)) { for my $n (split(",", $hs)) {
my $link = $zwave_link{$n}{$model}; my $link = $zwave_link{$n}{lc($model)};
next if(!$link); next if(!$link);
$pl .= "<div class='detLink ZWPepper'>"; $pl .= "<div class='detLink ZWPepper'>";
my $url = ($n eq "alliance" ? my $url = ($n eq "alliance" ?
@ -5152,7 +5152,7 @@ ZWave_fhemwebFn($$$$)
$pl .= "</div>"; $pl .= "</div>";
} }
my $img = ZWave_getPic($iodev, $model); my $img = ZWave_getPic($iodev, lc($model));
if($img && !$FW_ss) { if($img && !$FW_ss) {
$pl .= "<div class='img'".($FW_tp?"":" style='float:right'").">"; $pl .= "<div class='img'".($FW_tp?"":" style='float:right'").">";
$pl .= "<img style='max-width:96;max-height:96px;' src='$img'>"; $pl .= "<img style='max-width:96;max-height:96px;' src='$img'>";