aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/feed.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2009-12-29 02:37:16 +0000
committerAndreas Fischer <bantu@phpbb.com>2009-12-29 02:37:16 +0000
commit4729046bf469684d44d66fb6e6f8f009bca8a858 (patch)
tree939d8d7759d3122b4340c2d3c3e254b3ac8aeaeb /phpBB/feed.php
parentd67d6ed26acc27e447d4b0625db2fbcfc61d5753 (diff)
downloadforums-4729046bf469684d44d66fb6e6f8f009bca8a858.tar
forums-4729046bf469684d44d66fb6e6f8f009bca8a858.tar.gz
forums-4729046bf469684d44d66fb6e6f8f009bca8a858.tar.bz2
forums-4729046bf469684d44d66fb6e6f8f009bca8a858.tar.xz
forums-4729046bf469684d44d66fb6e6f8f009bca8a858.zip
#54235
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10388 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/feed.php')
-rw-r--r--phpBB/feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php
index 4522f2f940..ab3fea51ec 100644
--- a/phpBB/feed.php
+++ b/phpBB/feed.php
@@ -316,7 +316,7 @@ function feed_generate_content($content, $uid, $bitfield, $options)
$content = preg_replace('#\<\!\[CDATA\[(.*?)\]\]\>#s', '', $content);
// Other control characters
- // $content = preg_replace('#(?:[\x00-\x1F\x7F]+|(?:\xC2[\x80-\x9F])+)#', '', $content);
+ $content = preg_replace('#(?:[\x00-\x1F\x7F]+|(?:\xC2[\x80-\x9F])+)#', '', $content);
return $content;
}