From 0e5b02b7e09dd9bca4bc88f0fad1da19207cbdb8 Mon Sep 17 00:00:00 2001 From: betateilchen <> Date: Mon, 29 Jul 2019 20:01:16 +0000 Subject: [PATCH] 98_help.pm: small bugfix git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@19915 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- FHEM/98_help.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FHEM/98_help.pm b/FHEM/98_help.pm index ddeac08ce..951e649de 100644 --- a/FHEM/98_help.pm +++ b/FHEM/98_help.pm @@ -265,7 +265,8 @@ sub cref_findInfo { my ($err,@text) = FileRead({FileName => "$modPath/MAINTAINER.txt", ForceType => 'file'}); foreach $l (@text) { @line = split("[ \t][ \t]*", $l,3); - $found = ($l =~ m/_$mod/i); + $found = ($l =~ m/.._$mod.pm/i); +# $found = ($l =~ m/_$mod/i); last if ($found); } if($found) {