Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv5469
Modified Files:
index.php
Log Message:
Lets go back to good old ISO-8859-1
ISO-8859-2 was causing lots of problems
Index: index.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/index.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- index.php 28 Jun 2003 18:11:01 -0000 1.14
+++ index.php 3 Jul 2003 21:42:39 -0000 1.15
@@ -2,7 +2,7 @@
// We need to set this to return a 200 since we use .htaccess ErrorDocument
// rules to handle archives.
header("HTTP/1.0 200\r\n");
-header("Content-Type: text/html; charset=ISO-8859-2");
+header("Content-Type: text/html; charset=ISO-8859-1");
include_once("serendipity_config.inc.php");
$track_referer = true;
$uri = $_SERVER['REQUEST_URI'];
|