From: Eric Wong Date: Mon, 28 Apr 2014 20:45:42 +0000 (+0000) Subject: feed: swap order of "next" and "head" links X-Git-Tag: v1.0.0~1187 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=02a8a6dfa6e039ea0df5641ccc250ff346ec0008;p=public-inbox.git feed: swap order of "next" and "head" links This is one less key stroke for somebody paging through the list history. --- diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm index 0a08c7f2..e593aace 100644 --- a/lib/PublicInbox/Feed.pm +++ b/lib/PublicInbox/Feed.pm @@ -111,7 +111,7 @@ sub nav_footer { $head = $cgi->path_info; $head = qq!head!; } - "$head $next"; + "$next $head"; } sub each_recent_blob {