Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv9818
Modified Files:
rss.php
Log Message:
xml header should be utf-8, not iso-8859-1. This should fix the encoding
problems.
utf8 is necessary because we need to have wide character support, that way
s9y can be used by people who have weird languages with lots of symbols.
Index: rss.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/rss.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- rss.php 4 Jun 2003 16:19:27 -0000 1.3
+++ rss.php 3 Jul 2003 22:10:38 -0000 1.4
@@ -25,7 +25,7 @@
break;
}
-echo '<?xml version="1.0" encoding="iso-8859-1" ?>';
+echo '<?xml version="1.0" encoding="utf-8" ?>';
echo "\n";
switch ($version) {
case '0.91':
|