From 8c878c7337b0b92ce5ac3689c74e4ef9f0a8b7f1 Mon Sep 17 00:00:00 2001 From: betateilchen Date: Sat, 13 Feb 2016 09:51:16 +0000 Subject: [PATCH] 98_help.pm: bugfixes http://forum.fhem.de/index.php/topic,49232 git-svn-id: https://svn.fhem.de/fhem/trunk@10809 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/98_help.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fhem/FHEM/98_help.pm b/fhem/FHEM/98_help.pm index f7911ceb3..73bfd444e 100644 --- a/fhem/FHEM/98_help.pm +++ b/fhem/FHEM/98_help.pm @@ -133,6 +133,7 @@ sub CommandHelp { "----------------------------------------------------------------------\n"; for my $cmd (sort keys %cmds) { + next if($cmd =~ m/header:command/); next if(!$cmds{$cmd}{Hlp}); next if($cl && $cmds{$cmd}{ClientFilter} && $cl->{TYPE} !~ m/$cmds{$cmd}{ClientFilter}/); @@ -141,8 +142,8 @@ sub CommandHelp { # $a[0] =~ s/>/>/g; $a[1] //= ""; $a[1] = " $a[1]"; - $a[1] =~ s//>/g; +# $a[1] =~ s//>/g; $str .= sprintf("%-15s%-50s\n%s\n", $cmd, $a[0], $a[1]); }