Reversing order of RT history

Is there a simple place to reverse the order of the history? Maybe in
Transaction.pm? I’d like it to show most current first.

Thanks!

Colleen

I figured it out with some searching.
For those who are interested, add:
$Transactions->OrderBy( FIELD => ‘id’, ORDER => ‘DESC’ );

right after:
my $Transactions = $Ticket->Transactions;

in /usr/local/rt/WebRT/html/Ticket/Elements/ShowHistory

Colleen