Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32467
Modified Files:
comment.php
Log Message:
charset error
Index: comment.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/comment.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- comment.php 7 Apr 2004 12:42:42 -0000 1.31
+++ comment.php 13 Apr 2004 11:09:42 -0000 1.32
@@ -42,7 +42,7 @@
}
} else {
$id = (!empty($serendipity['POST']['entry_id']) ? $serendipity['POST']['entry_id'] : $serendipity['GET']['entry_id']);
-
+
$html_header = '';
if ($serendipity['XHTML11']) {
@@ -54,7 +54,7 @@
<head>
<title>' . COMMENTS . '</title>
<link rel="stylesheet" type="text/css" href="' . $serendipity['serendipityHTTPPath'] . 'serendipity.css.php?mode=comments" />
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo LANG_CHARSET; ?>" />
+ <meta http-equiv="Content-Type" content="text/html; charset=' . LANG_CHARSET . '" />
</head>
<body id="serendipity_comment_page">
';
|