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=-2.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 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 C69941FAF6; Sun, 2 Nov 2014 01:47:34 +0000 (UTC) Date: Sun, 2 Nov 2014 01:47:34 +0000 From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] view: rename "permalink" to "threadlink" Message-ID: <20141102014734.GA1838@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: These may not be permanent, after all. Better threading support can be done for message views, so and the current index layout is still too busy and suboptimal. --- lib/PublicInbox/View.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index 2e70d25..b943c4c 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -147,7 +147,7 @@ sub index_entry { } $rv .= " parent"; } - $rv .= " permalink"; + $rv .= " threadlink"; $rv . "\n\n"; } -- EW