about summary refs log tree commit homepage
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rwxr-xr-xDocumentation/mknews.perl3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/mknews.perl b/Documentation/mknews.perl
index 4a5d0e56..f053e2bf 100755
--- a/Documentation/mknews.perl
+++ b/Documentation/mknews.perl
@@ -105,7 +105,8 @@ sub mime2html {
         my ($out, $eml, $ctx) = @_;
         my $smsg = $ctx->{smsg} = bless {}, 'PublicInbox::Smsg';
         $smsg->populate($eml);
-        print $out PublicInbox::View::eml_entry($ctx, $eml, 1) or die;
+        $ctx->{msgs} = [ 1 ]; # for <hr> in eml_entry
+        print $out PublicInbox::View::eml_entry($ctx, $eml) or die;
 }
 
 sub html_start {