From: Eric Wong Date: Wed, 31 May 2023 09:14:44 +0000 (+0000) Subject: searchview: fix 80-column violation for "above" link X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ef68bbe5fc73580bc600b2046658d03f91c1f7d;p=thirdparty%2Fpublic-inbox.git searchview: fix 80-column violation for "above" link I think just noting "options" is enough and the mbox download buttons are visible enough at the top of the search results pages. --- diff --git a/lib/PublicInbox/SearchView.pm b/lib/PublicInbox/SearchView.pm index 07fef40cc..10a1ce40d 100644 --- a/lib/PublicInbox/SearchView.pm +++ b/lib/PublicInbox/SearchView.pm @@ -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{ | reverse}; exists($ctx->{ibx}) and - $rv .= q{ | sort options + mbox downloads above}; + $rv .= q{ | options above}; $rv; }