Subject: | Link does not show up on every search result |
On RT 4.0.4, when you do a quick search on a queue, the link is not present in the page results. If you click on "Show Results", the link appears.
Because plugins/RT-Extension-JSGantt/html/Callbacks/JSGantt/Elements/Tabs/Privileged uses:
if ( $request_path =~ qr{^/Search/Results.html} ) {
and simple search is /Search/Simple.html.
I think the following would be ok:
if ( $request_path =~ m!^/Search/\w\.html! ) {