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

commandref_join.pl: Fix typo (Forum #80727)

git-svn-id: https://svn.fhem.de/fhem/trunk@15598 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-12-12 22:10:15 +00:00
parent 69433f2adc
commit 976a42b2e1

View File

@ -87,7 +87,7 @@ foreach my $lang (@lang) {
my $modType;
while(my $l = <IN>) {
$modType = "command" if($l =~ m/>FHEM commands</);
$modType = "device" if($l =~ m/>Devices</);
$modType = "device" if($l =~ m/>Device modules</);
$modType = "helper" if($l =~ m/>Helper modules</);
$modIdx{$1} = $modType
if($modType && $l =~ m/href="#(.*?)">/ && $1 ne "global");