Converted to UTF-8

This commit is contained in:
2013-10-19 23:11:24 +02:00
parent f0cc9260ca
commit 2661e933da
6 changed files with 166 additions and 128 deletions

View File

@@ -71,7 +71,7 @@ class Feed extends PhpObject {
$sItems = implode("\n", array_map(array($this, 'buildItem'), $asSortedItems));
//Global Feed
$sFeed = '<?xml version="1.0" encoding="ISO-8859-1" ?>';
$sFeed = '<?xml version="1.0" encoding="UTF-8" ?>';
$sFeed .= self::getHtml(self::getHtml($sRssFeedHeader.$sItems, 'channel'), 'rss', '', '', array('version'=>'2.0', 'xmlns:atom'=>'http://www.w3.org/2005/Atom'));
return $sFeed;