about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-10-26 09:45:52 +0000
committerEric Wong <e@80x24.org>2014-10-26 09:47:33 +0000
commit3aba68332180622a9e462fdaa275aaa8d578a57e (patch)
tree84ad57d215ba81a8efb9e7fb2066d60f8aaa0ff1 /lib
parent9f7527ec895874c3a45fcac7dcf26f5a7bb530dc (diff)
downloadpublic-inbox-3aba68332180622a9e462fdaa275aaa8d578a57e.tar.gz
"original" is a bit misleading, since we strip needless junk
like HTML from messages before it ever hits git.
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/View.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 9974cfa1..2e70d25a 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -286,7 +286,7 @@ sub headers_to_html_header {
                 $rv .= 'Message-ID: &lt;' . $mid->as_html . '&gt; ';
                 my $href = $mid->as_href;
                 $href = "../m/$href" unless $full_pfx;
-                $rv .= "(<a\nhref=\"$href.txt\">original</a>)\n";
+                $rv .= "(<a\nhref=\"$href.txt\">raw</a>)\n";
         }
 
         my $irp = $header_obj->header_raw('In-Reply-To');