unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] view: fix link generation for replies in threads
@ 2016-04-25  0:08 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2016-04-25  0:08 UTC (permalink / raw)
  To: meta

Oops, gotta test this :x
---
 lib/PublicInbox/View.pm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 0e65dac..177a1a6 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -30,7 +30,7 @@ sub msg_html {
 	headers_to_html_header($hdr, $ctx) .
 		multipart_text_as_html($mime) .
 		'</pre><hr /><pre>' .
-		html_footer($hdr, 1, $ctx) .
+		html_footer($hdr, 1, $ctx, 'R/') .
 		$footer .
 		'</pre></body></html>';
 }
@@ -139,7 +139,7 @@ sub index_entry {
 		index_walk($fh, $_[0], $enc, \$part_nr);
 	});
 	$mime->body_set('');
-	$rv = "\n" . html_footer($hdr, 0, $ctx, $mhref);
+	$rv = "\n" . html_footer($hdr, 0, $ctx, "$path$href/R");
 
 	if (defined $irt) {
 		unless (defined $parent_anchor) {
@@ -498,7 +498,7 @@ sub mailto_arg_link {
 }
 
 sub html_footer {
-	my ($hdr, $standalone, $ctx, $mhref) = @_;
+	my ($hdr, $standalone, $ctx, $rhref) = @_;
 
 	my $srch = $ctx->{srch} if $ctx;
 	my $upfx = '../';
@@ -526,7 +526,7 @@ sub html_footer {
 		$irt = '';
 	}
 
-	$irt . qq(<a\nhref="${tpfx}R/">reply</a>) . $idx;
+	$irt . qq(<a\nhref="$rhref">reply</a>) . $idx;
 }
 
 sub linkify_ref_nosrch {
-- 
EW


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-04-25  0:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-25  0:08 [PATCH] view: fix link generation for replies in threads Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).