diff --git a/FHEM/98_help.pm b/FHEM/98_help.pm index 270688c7b..90ccba5bd 100644 --- a/FHEM/98_help.pm +++ b/FHEM/98_help.pm @@ -71,7 +71,7 @@ sub CommandHelp { $output = "No help found for module: $mod" unless $output; } else { - $output = ''; + $output = "
Internal command: $mod"; my $i; my $f = "$modPath/docs/commandref_frame$lang.html"; my $skip = 1; @@ -257,7 +257,7 @@ sub cref_findInfo { @line = split("[ \t][ \t]*", $l,4); last if $l =~ m/$mod/i; } - $line[0]= (split("/",$line[0]))[1]; + $line[0]= (split("/",$line[0]))[1] if $line[0] =~ /\//; my $text = "
Module: $line[0] "; $text .= "Maintainer: $line[1] "; $text .= "Forum: $line[3]\n";