2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

98_Installer: fix module search

git-svn-id: https://svn.fhem.de/fhem/trunk@18946 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2019-03-17 16:03:14 +00:00
parent 9e19878b1b
commit fea1d4e624

View File

@ -954,7 +954,7 @@ sub CreateSearchList ($$$) {
my $l = $linecount % 2 == 0 ? $rowOpenEven : $rowOpenOdd;
FHEM::Meta::Load( $modules{ $defs{$device}{TYPE} } );
FHEM::Meta::Load( $defs{$device}{TYPE} );
my $linkDev = $device;
$linkDev =
@ -1207,7 +1207,8 @@ sub CreateSearchList ($$$) {
# . $package . '</a>';
# }
# else {
$packages .= $package;
$packages .= $package;
# }
}