mhop/fhem-mirror

FHEM/10_KNX.pm : Line 159 missing $ at the end

jksd opened this issue · 0 comments

jksd commented

Bug:

my $PAT_GAD_NONAME = '^(on|off|value|raw|' . $PAT_GAD_OPTIONS . q{|} . $PAT_GAD_SUFFIX . ')';

OK:
my $PAT_GAD_NONAME = '^(on|off|value|raw|' . $PAT_GAD_OPTIONS . q{|} . $PAT_GAD_SUFFIX . ')$';

Without the tailing $, "offen" would be identified as illegal, too.
Thank you in advance for fixing.