Open
Description
This is a repeat of bug #42323 submitted in 2014.
When sorting by author (<AUTHSORT>
), the secondary sort key (date) is incorrect (random dates).
--- mhutil-dist.pl 2020-11-16 09:17:01
+++ mhutil.pl 2023-08-05 23:52:48
@@ -282,7 +282,7 @@
} else {
return sort {
($from{$a} cmp $from{$b})
- || ($Time{$a} <=> $Time{$a})
+ || ($Time{$a} <=> $Time{$b})
} keys %Subject;
}