X-Git-Url: http://git.sourceforge.jp/view?p=nucleus-jp%2Fnucleus-jp-ancient.git;a=blobdiff_plain;f=utf8%2Fxml-rss2.php;h=8ef892425c459af369485f494203add56a98d51d;hp=a3a08577ee0d5a20e951ac5a866c61a8c1211012;hb=605b8bbed0b395b1d72bd07bfa495b7e590c1552;hpb=967c5432a631dc196b6113fdcc6fe2a96f414030 diff --git a/utf8/xml-rss2.php b/utf8/xml-rss2.php index a3a0857..8ef8924 100755 --- a/utf8/xml-rss2.php +++ b/utf8/xml-rss2.php @@ -2,7 +2,7 @@ /* * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/) - * Copyright (C) 2002-2007 The Nucleus Group + * Copyright (C) 2002-2010 The Nucleus Group * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -14,8 +14,8 @@ /** * Nucleus RSS syndication channel skin * @license http://nucleuscms.org/license.txt GNU General Public License - * @copyright Copyright (C) 2002-2007 The Nucleus Group - * @version $Id: xml-rss2.php,v 1.8 2007-02-04 06:28:44 kimitake Exp $ + * @copyright Copyright (C) 2002-2010 The Nucleus Group + * @version $Id$ * $NucleusJP: xml-rss2.php,v 1.7 2006/07/17 19:59:46 kimitake Exp $ */ @@ -45,6 +45,9 @@ if (!$CONF['DisableSite']) { header('HTTP/1.0 304 Not Modified'); header('Content-Length: 0'); } else { + if (strtolower(_CHARSET) != 'utf-8') { + $feed = mb_convert_encoding($feed, "UTF-8", _CHARSET); + } header("Content-Type: application/xml"); // dump feed echo $feed;