2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

01_FHEMWEB.pm: yet another paw (probablyAssociatedWith) fix (Forum #108960)

git-svn-id: https://svn.fhem.de/fhem/trunk@21367 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2020-03-06 12:32:42 +00:00
parent 4f21d34edc
commit d0abfd90ce

View File

@ -1571,7 +1571,7 @@ FW_makeTableFromArray($$@) {
foreach (sort @obj) {
FW_pF "<tr class=\"%s\"><td>", (($row++)&1)?"odd":"even";
my $alias = FW_alias($_, $nameDisplay);
FW_pH "detail=$_", ($alias eq $_) ? $_ : "$_ $alias";
FW_pH "detail=$_", $alias eq $_ ? $_ : "$_ <span>($alias)</span>";
FW_pO "</td><td>";
FW_pO $defs{$_}{STATE} if(defined($defs{$_}{STATE}));
FW_pO "</td><td>";