fhem.pl: perlSyntaxCheck mods (Forum #51744)

git-svn-id: https://svn.fhem.de/fhem/trunk@11191 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2016-04-05 11:55:05 +00:00
parent 2cca25446f
commit 33342fc170

View File

@@ -4571,7 +4571,7 @@ perlSyntaxCheck($%)
my $psc = AttrVal("global", "perlSyntaxCheck", ($featurelevel>5.7) ? 1 : 0);
return undef if(!$psc || !$init_done);
return undef if($exec !~ m/^{.*}$/s);
return undef if($exec !~ m/^{/);
$exec = EvalSpecials("{return undef; $exec}", %specials);
my $r = AnalyzePerlCommand(undef, $exec);