lib/PublicInbox/View.pm | 12 ++++++------
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 45c191dbe6a942a5a0b2e3edf2574d8f482e221b..f04467237eac661af2a596f95c008afee297dcd9 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -1087,13 +1087,13 @@ my $obfs_ibx = $ibx->{obfuscate} ? $ibx : undef;
# sort by recency, this allows new posts to "bump" old topics...
foreach my $topic (sort { $b->[0] <=> $a->[0] } @$order) {
- my ($ds, $n, $seen, $top, @ex) = @$topic;
+ my ($ds, $n, $seen, $top_subj, @ex) = @$topic;
@$topic = ();
- next unless defined $top; # ghost topic
- my $mid = delete $seen->{$top};
+ next unless defined $top_subj; # ghost topic
+ my $mid = delete $seen->{$top_subj};
my $href = mid_escape($mid);
- my $prev_subj = [ split(/ /, $top) ];
- $top = PublicInbox::Hval->new($top)->as_html;
+ my $prev_subj = [ split(/ /, $top_subj) ];
+ $top_subj = PublicInbox::Hval->new($top_subj)->as_html;
$ds = fmt_ts($ds);
# $n isn't the total number of posts on the topic,
@@ -1109,7 +1109,7 @@ }
my $mbox = qq(mbox.gz);
my $atom = qq(Atom);
- my $s = "$top\n" .
+ my $s = "$top_subj\n" .
" $ds UTC $n - $mbox / $atom\n";
for (my $i = 0; $i < scalar(@ex); $i += 2) {
my $level = $ex[$i];