lib/PublicInbox/View.pm | 10 +---------
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 7cac7851104736b3daaebb953ff0e5f12b667675..3ee67902ca25a54ae4f83ef1ca6d6781dc7fd8c4 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -74,13 +74,10 @@ my $root_anchor = $state->{root_anchor};
my $path = $root_anchor ? '../../' : '';
my $href = $mid->as_href;
my $irt = $header_obj->header('In-Reply-To');
- my ($anchor_idx, $anchor, $t_anchor);
+ my ($anchor_idx, $anchor);
if (defined $irt) {
$anchor_idx = anchor_for($irt);
$anchor = $seen->{$anchor_idx};
- $t_anchor = T_ANCHOR;
- } else {
- $t_anchor = '';
}
if ($srch) {
$subj = "$subj";
@@ -132,11 +129,6 @@ $anchor = "${path}m/$v/";
$seen->{$anchor_idx} = $anchor;
}
$rv .= " parent";
- }
-
- if ($srch) {
- $rv .= " " .
- "threadlink";
}
$fh->write($rv .= '');