From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 7D29C2018A for ; Mon, 27 Jun 2016 18:29:54 +0000 (UTC) From: Eric Wong To: olddoc-public@80x24.org Subject: [PATCH] _head: fix Content-Type charset attribute Date: Mon, 27 Jun 2016 18:29:54 +0000 Message-Id: <20160627182954.12133-1-e@80x24.org> List-Id: Oops, this breaks rendering with some browser configurations which do not assume UTF-8. --- lib/oldweb/_head.rhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oldweb/_head.rhtml b/lib/oldweb/_head.rhtml index ae4d5e9..720fd95 100644 --- a/lib/oldweb/_head.rhtml +++ b/lib/oldweb/_head.rhtml @@ -8,4 +8,4 @@ type="application/atom+xml" /><% end %> +content="text/html; charset=<%= @options.charset %>"> -- EW