[geeklog-hg] geeklog: Fixed a bug where utf-8 charset was hard-coded in heade...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Wed Jan 8 09:57:06 EST 2014


changeset 9397:ce8a63e778fd
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/ce8a63e778fd
user: Kenji ITO <mystralkk at gmail.com>
date: Wed Jan 08 23:54:09 2014 +0900
description:
Fixed a bug where utf-8 charset was hard-coded in header.thtml of Modern Curve, Denim and ProfessionalCSS (bug #0001615)

diffstat:

 public_html/layout/denim/header.thtml            |  2 +-
 public_html/layout/modern_curve/header.thtml     |  2 +-
 public_html/layout/professional_css/header.thtml |  2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diffs (36 lines):

diff -r 9aa504d3f567 -r ce8a63e778fd public_html/layout/denim/header.thtml
--- a/public_html/layout/denim/header.thtml	Wed Jan 08 16:51:06 2014 +0900
+++ b/public_html/layout/denim/header.thtml	Wed Jan 08 23:54:09 2014 +0900
@@ -2,7 +2,7 @@
 <html{lang_attribute}{xmlns}>
 
 <head profile="http://www.w3.org/2003/g/data-view">
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"{xhtml}>
+<meta http-equiv="Content-Type" content="text/html; charset={charset}"{xhtml}>
 <title>{page_title_and_site_name}</title>
 <meta http-equiv="Content-Script-Type" content="text/javascript"{xhtml}>
 <meta http-equiv="Content-Style-Type" content="text/css"{xhtml}>
diff -r 9aa504d3f567 -r ce8a63e778fd public_html/layout/modern_curve/header.thtml
--- a/public_html/layout/modern_curve/header.thtml	Wed Jan 08 16:51:06 2014 +0900
+++ b/public_html/layout/modern_curve/header.thtml	Wed Jan 08 23:54:09 2014 +0900
@@ -1,7 +1,7 @@
 {doctype}
 <html{lang_attribute}{xmlns}>
   <head profile="http://www.w3.org/2003/g/data-view">
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"{xhtml}>
+    <meta http-equiv="Content-Type" content="text/html; charset={charset}"{xhtml}>
     <title>{page_title_and_site_name}</title>
 
     <meta http-equiv="Content-Script-Type" content="text/javascript"{xhtml}>
diff -r 9aa504d3f567 -r ce8a63e778fd public_html/layout/professional_css/header.thtml
--- a/public_html/layout/professional_css/header.thtml	Wed Jan 08 16:51:06 2014 +0900
+++ b/public_html/layout/professional_css/header.thtml	Wed Jan 08 23:54:09 2014 +0900
@@ -1,7 +1,7 @@
 {doctype}
 <html{lang_attribute}{xmlns}>
   <head profile="http://www.w3.org/2003/g/data-view">
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"{xhtml}>
+    <meta http-equiv="Content-Type" content="text/html; charset={charset}"{xhtml}>
     <title>{page_title_and_site_name}</title>
 
     <meta http-equiv="Content-Script-Type" content="text/javascript"{xhtml}>



More information about the geeklog-cvs mailing list