Activity for Thomas Wilhelmi

  • Thomas Wilhelmi Thomas Wilhelmi posted a comment on discussion Open Discussion

    Hi, I don't know if this is already known but it seems to be present also in the newest version. These lines (starting at line 207): ~~~ if (keys(%NoticeList) && $Detail>7) { print "\nNotices:\n"; foreach my $line (sort {$a cmp $b} keys %OtherList) { print " $line: $OtherList{$line} Time(s)\n"; } } ~~~ should be: if (keys(%NoticeList) && $Detail>7) { print "\nNotices:\n"; foreach my $line (sort {$a cmp $b} keys %NoticeList) { print " $line: $NoticeList{$line} Time(s)\n"; } } Best regards

1