]> git.ipfire.org Git - thirdparty/public-inbox.git/commitdiff
searchview: fix 80-column violation for "above" link
authorEric Wong <e@80x24.org>
Wed, 31 May 2023 09:14:44 +0000 (09:14 +0000)
committerEric Wong <e@80x24.org>
Wed, 31 May 2023 23:22:28 +0000 (23:22 +0000)
I think just noting "options" is enough and the mbox download
buttons are visible enough at the top of the search results
pages.

lib/PublicInbox/SearchView.pm

index 07fef40ccccc42b34f46da8c83add5bbf1d79a72..10a1ce40d511be6e78385de4f0cc7f4905334bdf 100644 (file)
@@ -276,7 +276,7 @@ sub search_nav_bot { # also used by WwwListing for searching extindex miscidx
        my $rev = $q->qs_html(o => $o < 0 ? 0 : -1);
        $rv .= qq{ | <a\nhref="?$rev">reverse</a>};
        exists($ctx->{ibx}) and
-               $rv .= q{ | sort options + mbox downloads <a href=#d>above</a></pre>};
+               $rv .= q{ | options <a href=#d>above</a></pre>};
        $rv;
 }