aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_topic.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2007-08-19 13:40:53 +0000
committerNils Adermann <naderman@naderman.de>2007-08-19 13:40:53 +0000
commitd104d3d969d2fbc77f1004e0e5369e8c0c15738f (patch)
tree188b373ce8876398477e517f242a29ae72cab23e /phpBB/includes/mcp/mcp_topic.php
parentb8b85e5aca616c1e4b43246daa97a11881fb218d (diff)
downloadforums-d104d3d969d2fbc77f1004e0e5369e8c0c15738f.tar
forums-d104d3d969d2fbc77f1004e0e5369e8c0c15738f.tar.gz
forums-d104d3d969d2fbc77f1004e0e5369e8c0c15738f.tar.bz2
forums-d104d3d969d2fbc77f1004e0e5369e8c0c15738f.tar.xz
forums-d104d3d969d2fbc77f1004e0e5369e8c0c15738f.zip
- BBCode parsing order should ALWAYS be censor_text(), bbcode_secon_pass(), bbcode_nl2br(), smiley_text(), parse_attachments()
- using \r on custom bbcodes to allow line breaks [Bug #10758] git-svn-id: file:///svn/phpbb/trunk@8050 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_topic.php')
-rw-r--r--phpBB/includes/mcp/mcp_topic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_topic.php b/phpBB/includes/mcp/mcp_topic.php
index a5bfba23fe..1002b1c918 100644
--- a/phpBB/includes/mcp/mcp_topic.php
+++ b/phpBB/includes/mcp/mcp_topic.php
@@ -175,13 +175,13 @@ function mcp_topic_view($id, $mode, $action)
{
$message = $row['post_text'];
$post_subject = ($row['post_subject'] != '') ? $row['post_subject'] : $topic_info['topic_title'];
- $message = str_replace("\n", '<br />', $message);
if ($row['bbcode_bitfield'])
{
$bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']);
}
+ $message = bbcode_nl2br($message);
$message = smiley_text($message);
if (!empty($attachments[$row['post_id']]))