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 5F077633803; Mon, 6 Jul 2015 20:11:25 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Cc: Eric Wong Subject: [PATCH] feed: close body tag correctly in index Date: Mon, 6 Jul 2015 20:11:29 +0000 Message-Id: <1436213489-4893-1-git-send-email-e@80x24.org> List-Id: Oops, noticed by manual inspection. One day we'll run tidy in tests to validate. --- lib/PublicInbox/Feed.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm index 17add81..bcca24c 100644 --- a/lib/PublicInbox/Feed.pm +++ b/lib/PublicInbox/Feed.pm @@ -86,7 +86,7 @@ sub generate_html_index { $footer .= "\n" . $list_footer if $list_footer; $footer = "
" . PRE_WRAP . "$footer"; } - $html . "$footer"; + $html . "$footer"; } # private subs -- EW