@@ -, +, @@ sorting correctly --- svc/checkouts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/svc/checkouts +++ a/svc/checkouts @@ -210,7 +210,7 @@ while ( my $c = $sth->fetchrow_hashref() ) { } -@checkouts_today = sort { $a->{timstamp} cmp $b->{timestamp} } @checkouts_today; +@checkouts_today = sort { $a->{timestamp} cmp $b->{timestamp} } @checkouts_today; @checkouts_today = reverse(@checkouts_today) unless ( C4::Context->preference('todaysIssuesDefaultSortOrder') eq 'desc' ); --