Quicksearch

From Request Tracker Wiki
Revision as of 16:20, 6 April 2016 by Admin (talk | contribs) (2 revisions imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Hhow to modify the "Quick search" and remove stalled tickets from appearing in the search results. Applies to RT 3.8.x.

Copy share/html/Elements/Quicksearch to local/html/Elements, and then edit the copy.

Under queue_filter, replace the line "conditions => \@conditions," with:

conditions => [ {cond => "Status = 'new'",  name => loc ('new')  },
                {cond => "Status = 'open'", name => loc ('open') }] &>

Then restart Apache. You can also add other statuses here as you choose.