OSDN Git Service

fix typo
[nucleus-jp/nucleus-jp-ancient.git] / utf8 / xml-rss2.php
index 1f79c46..304ef7c 100755 (executable)
@@ -15,7 +15,7 @@
  * Nucleus RSS syndication channel skin
  * @license http://nucleuscms.org/license.txt GNU General Public License
  * @copyright Copyright (C) 2002-2009 The Nucleus Group
- * @version $Id: xml-rss2.php,v 1.8 2007-02-04 06:28:44 kimitake Exp $
+ * @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;