FHEMWEB on/off logic should support the :noArg specifier in the help

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@4222 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-11-15 07:13:26 +00:00
parent 6eb7fd584a
commit 860fa97a16

View File

@ -138,9 +138,9 @@ FHEMWEB_Initialize($)
refresh refresh
reverseLogs:0,1 reverseLogs:0,1
roomIcons roomIcons
smallscreen:deprecated smallscreen:unused
stylesheetPrefix stylesheetPrefix
touchpad:deprecated touchpad:unused
webname webname
); );
use warnings 'qw'; use warnings 'qw';
@ -2030,8 +2030,8 @@ FW_devState($$@)
my $state = $defs{$d}{STATE}; my $state = $defs{$d}{STATE};
$state = "" if(!defined($state)); $state = "" if(!defined($state));
$hasOnOff = ($allSets =~ m/(^| )on( |$)/ && $hasOnOff = ($allSets =~ m/(^| )on(:[^ ]*)?( |$)/ &&
$allSets =~ m/(^| )off( |$)/); $allSets =~ m/(^| )off(:[^ ]*)?( |$)/);
my $txt = $state; my $txt = $state;
if(defined(AttrVal($d, "showtime", undef))) { if(defined(AttrVal($d, "showtime", undef))) {
my $v = $defs{$d}{READINGS}{state}{TIME}; my $v = $defs{$d}{READINGS}{state}{TIME};