diff options
author | Andreas Fischer <bantu@phpbb.com> | 2009-12-10 03:05:33 +0000 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2009-12-10 03:05:33 +0000 |
commit | 3f35de4c63b2420b3a6b32113765fd217e91128a (patch) | |
tree | 6bedca8ff64a3c145556aef75550eef262fbde63 /phpBB | |
parent | 56cc34602b7bae811165ce7697e200af47b0e6f8 (diff) | |
download | forums-3f35de4c63b2420b3a6b32113765fd217e91128a.tar forums-3f35de4c63b2420b3a6b32113765fd217e91128a.tar.gz forums-3f35de4c63b2420b3a6b32113765fd217e91128a.tar.bz2 forums-3f35de4c63b2420b3a6b32113765fd217e91128a.tar.xz forums-3f35de4c63b2420b3a6b32113765fd217e91128a.zip |
Database input, already specialchared.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10313 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/feed.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php index 2670c022cb..56c2cab8ae 100644 --- a/phpBB/feed.php +++ b/phpBB/feed.php @@ -95,7 +95,7 @@ while ($row = $feed->get_item()) 'link' => '', 'title' => censor_text($title), 'category' => ($config['feed_item_statistics']) ? $board_url . '/viewforum.' . $phpEx . '?f=' . $row['forum_id'] : '', - 'category_name' => ($config['feed_item_statistics']) ? utf8_htmlspecialchars($row['forum_name']) : '', + 'category_name' => ($config['feed_item_statistics']) ? $row['forum_name'] : '', 'description' => censor_text(feed_generate_content($row[$feed->get('text')], $row[$feed->get('bbcode_uid')], $row[$feed->get('bitfield')], $options)), 'statistics' => '', ); |