atom v1.0のRSS表示、文字化け及びエラー対策

2009, 08, 12

nucleusのatom v1.0を使ってRSS表示しようとすると、Firefoxだと文字化け、IEだとエラーになってたので、atom.phpを以下のように修正。FirefoxでもIEでもちゃんと表示できるようになった。

	} else {
		header("Content-Type: application/xml");
		// dump feed
		echo $feed;
	}

   ↓ ↓

	} else {
		if ($CONF['Language'] == 'japanese-euc') { $feed = mb_convert_encoding($feed, "UTF-8", "EUC-JP");}
		header("Content-Type: application/xml");
		// dump feed
		echo $feed;
	}
« Prev item - Next item »
-------------------

Comments

No comments yet. You can be the first!

Leave comment

このアイテムは閲覧専用です。コメントの投稿、投票はできません。