Quick hack to add "Resolved" column to Quicksearch

I had a request from one of my users to add a link to view all
resolved tickets to he Quicksearch block in the rt-at-a-glance.
Thought someone might find this useful.

Make the following change to /opt/rt3/share/html/Elements (add line
65). You can add any other status by changing that line. It ONLY
affects the quicksearch.

62 foreach ( RT::Queue->ActiveStatusArray ) {
63 push @conditions, { cond => "Status = '$’", name => loc($) };
64 }
65 + push @conditions, { cond => “Status = ‘resolved’”, name=>‘resolved’};

~Sam