Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32451
Modified Files:
Tag: branch_0_6
comment.php
Log Message:
charset error
Index: comment.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/comment.php,v
retrieving revision 1.30.4.1
retrieving revision 1.30.4.2
diff -u -d -r1.30.4.1 -r1.30.4.2
--- comment.php 7 Apr 2004 12:38:17 -0000 1.30.4.1
+++ comment.php 13 Apr 2004 11:09:39 -0000 1.30.4.2
@@ -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">
';
@@ -160,3 +160,4 @@
}
/* vim: set sts=4 ts=4 expandtab : */
?>
+
|