From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.4 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, RP_MATCHES_RCVD shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 1912C20300 for ; Wed, 13 Apr 2016 02:43:46 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] view: fix link to view replies from $MESSAGE_ID/f/ links Date: Wed, 13 Apr 2016 02:43:46 +0000 Message-Id: <20160413024346.29486-1-e@80x24.org> List-Id: Oops, $MESSAGE_ID/f/R/ screws up rather badly. --- lib/PublicInbox/View.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index ebe82b4..2f718b7 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -581,8 +581,7 @@ sub html_footer { $irt = ''; } - $mhref = './' unless defined $mhref; - $irt . qq(reply) . $idx; + $irt . qq(reply) . $idx; } sub linkify_ref_nosrch { -- EW