2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

01_FHEMWEB.pm: specify widgetOverride for cmdAlias commands (Forum #74053)

git-svn-id: https://svn.fhem.de/fhem/trunk@14728 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-07-16 14:36:03 +00:00
parent f57eab9bf9
commit d162f4f953

View File

@ -1682,6 +1682,10 @@ FW_makeDeviceLine($$$$$)
}
my ($allSets, $cmdlist, $txt) = FW_devState($d, $rf, $extPage);
if($cmdlist) {
my $cl2 = $cmdlist; $cl2 =~ s/ [^:]*//g; $cl2 =~ s/:/ /g; # Forum #74053
$allSets = "$allSets $cl2";
}
$allSets = FW_widgetOverride($d, $allSets);
my $colSpan = ($usuallyAtEnd->{$d} ? ' colspan="2"' : '');