X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Documentation%2Fmknews.perl;h=adb83832d75d49f05f52c69fb1e21ce7593cfdd3;hb=daab9cf0b8fcd66d1cb7f62f7ea9a8b0e32320ef;hp=d803ca7753b1b716dc7cb05003194e419220eba8;hpb=95bdac7f09c69036efed537a4d03d5bdd2ae4eb6;p=public-inbox.git diff --git a/Documentation/mknews.perl b/Documentation/mknews.perl index d803ca77..adb83832 100755 --- a/Documentation/mknews.perl +++ b/Documentation/mknews.perl @@ -103,7 +103,7 @@ sub mime2txt { sub mime2html { my ($out, $mime, $ctx) = @_; - my $smsg = bless { mime => $mime }, 'PublicInbox::SearchMsg'; + my $smsg = bless { mime => $mime }, 'PublicInbox::Smsg'; print $out PublicInbox::View::index_entry($smsg, $ctx, 1) or die; } @@ -147,7 +147,7 @@ EOF sub mime2atom { my ($out, $astream, $mime, $ctx) = @_; - my $smsg = bless { mime => $mime }, 'PublicInbox::SearchMsg'; + my $smsg = bless { mime => $mime }, 'PublicInbox::Smsg'; if (defined(my $str = $astream->feed_entry($smsg))) { print $out $str or die; }