2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-04 05:16:45 +00:00

76_SolarForecast.pm: contrib 0.5.0

git-svn-id: https://svn.fhem.de/fhem/trunk@23621 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2021-01-26 22:20:16 +00:00
parent ef0d48f662
commit f68edfa905

View File

@ -2697,7 +2697,7 @@ sub listPVHistory {
} }
my $sq; my $sq;
for my $idx (sort{$a<=>$b} keys %{$pvhh}) { for my $idx (reverse sort{$a<=>$b} keys %{$pvhh}) {
$sq .= $idx." => ".$sub->($idx)."\n"; $sq .= $idx." => ".$sub->($idx)."\n";
} }