View | Details | Raw Unified | Return to bug 14299
Collapse All | Expand All

(-)a/svc/checkouts (-2 / +1 lines)
Lines 210-216 while ( my $c = $sth->fetchrow_hashref() ) { Link Here
210
}
210
}
211
211
212
212
213
@checkouts_today = sort { $a->{timstamp} cmp $b->{timestamp} } @checkouts_today;
213
@checkouts_today = sort { $a->{timestamp} cmp $b->{timestamp} } @checkouts_today;
214
@checkouts_today = reverse(@checkouts_today)
214
@checkouts_today = reverse(@checkouts_today)
215
  unless ( C4::Context->preference('todaysIssuesDefaultSortOrder') eq 'desc' );
215
  unless ( C4::Context->preference('todaysIssuesDefaultSortOrder') eq 'desc' );
216
216
217
- 

Return to bug 14299