about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/Feed.pm2
-rw-r--r--lib/PublicInbox/SearchView.pm8
2 files changed, 4 insertions, 6 deletions
diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm
index 7ebc0505..5708b60e 100644
--- a/lib/PublicInbox/Feed.pm
+++ b/lib/PublicInbox/Feed.pm
@@ -194,7 +194,7 @@ sub nav_footer {
                 $head = $cgi->path_info;
                 $head = qq!<a\nhref="$head">head</a>!;
         }
-        my $atom = "<a\nhref=\"$feed_opts->{atomurl}\">Atom</a>";
+        my $atom = "<a\nhref=\"$feed_opts->{atomurl}\">Atom feed</a>";
         "<a\nname=\"s$anchor\">page:</a> $next $head $atom";
 }
 
diff --git a/lib/PublicInbox/SearchView.pm b/lib/PublicInbox/SearchView.pm
index 8751fca2..ab3dddb4 100644
--- a/lib/PublicInbox/SearchView.pm
+++ b/lib/PublicInbox/SearchView.pm
@@ -103,15 +103,13 @@ sub search_nav_top {
         my $x = $q->{x};
         if ($x eq '') {
                 my $t = $q->qs_html(x => 't');
-                $rv .= qq{<b>summary</b>|};
-                $rv .= qq{<a\nhref="?$t">threaded</a>}
+                $rv .= qq{<b>summary</b>|<a\nhref="?$t">threaded</a>}
         } elsif ($q->{x} eq 't') {
                 my $s = $q->qs_html(x => '');
-                $rv .= qq{<a\nhref="?$s">summary</a>|};
-                $rv .= qq{<b>threaded</b>};
+                $rv .= qq{<a\nhref="?$s">summary</a>|<b>threaded</b>};
         }
         my $A = $q->qs_html(x => 'A', r => undef);
-        $rv .= qq{|<a\nhref="?$A">Atom</a>]};
+        $rv .= qq{|<a\nhref="?$A">Atom feed</a>]};
 }
 
 sub search_nav_bot {