mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-13 17:26:34 +00:00
on-till bug fixed
git-svn-id: https://svn.fhem.de/fhem/trunk@523 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
3b14bf8ad1
commit
c479e241be
@ -157,7 +157,7 @@ my $nextat; # Time when next timer will be triggered.
|
|||||||
my $intAtCnt=0;
|
my $intAtCnt=0;
|
||||||
my %duplicate; # Pool of received msg for multi-fhz/cul setups
|
my %duplicate; # Pool of received msg for multi-fhz/cul setups
|
||||||
my $duplidx=0; # helper for the above pool
|
my $duplidx=0; # helper for the above pool
|
||||||
my $cvsid = '$Id: fhem.pl,v 1.93 2009-12-22 11:00:54 rudolfkoenig Exp $';
|
my $cvsid = '$Id: fhem.pl,v 1.94 2009-12-27 18:07:14 rudolfkoenig Exp $';
|
||||||
my $namedef =
|
my $namedef =
|
||||||
"where <name> is either:\n" .
|
"where <name> is either:\n" .
|
||||||
"- a single device name\n" .
|
"- a single device name\n" .
|
||||||
@ -1810,7 +1810,7 @@ GetTimeSpec($)
|
|||||||
($hr, $min, $sec) = ($1, $2, 0);
|
($hr, $min, $sec) = ($1, $2, 0);
|
||||||
} elsif($tspec =~ m/^{(.*)}$/) {
|
} elsif($tspec =~ m/^{(.*)}$/) {
|
||||||
$fn = $1;
|
$fn = $1;
|
||||||
$tspec = eval $fn;
|
$tspec = AnalyzeCommand(undef, "{$fn}");
|
||||||
if(!$@ && $tspec =~ m/^([0-9]+):([0-5][0-9]):([0-5][0-9])$/) {
|
if(!$@ && $tspec =~ m/^([0-9]+):([0-5][0-9]):([0-5][0-9])$/) {
|
||||||
($hr, $min, $sec) = ($1, $2, $3);
|
($hr, $min, $sec) = ($1, $2, $3);
|
||||||
} elsif(!$@ && $tspec =~ m/^([0-9]+):([0-5][0-9])$/) {
|
} elsif(!$@ && $tspec =~ m/^([0-9]+):([0-5][0-9])$/) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user