aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorBruno Ais <brunoaiss@gmail.com>2013-07-20 16:24:31 +0100
committerBruno Ais <brunoaiss@gmail.com>2013-07-20 16:24:31 +0100
commitfc64e6997f9d54362a7fbe2f7a366fb8ba497deb (patch)
tree93e7d7e8651d5944464444769c78bfc9eba3e743 /phpBB
parent713a2ba573ab49d2add2522392b1f91ca3065dea (diff)
downloadforums-fc64e6997f9d54362a7fbe2f7a366fb8ba497deb.tar
forums-fc64e6997f9d54362a7fbe2f7a366fb8ba497deb.tar.gz
forums-fc64e6997f9d54362a7fbe2f7a366fb8ba497deb.tar.bz2
forums-fc64e6997f9d54362a7fbe2f7a366fb8ba497deb.tar.xz
forums-fc64e6997f9d54362a7fbe2f7a366fb8ba497deb.zip
[ticket/11638] Fixed typo in the variable name.
sub-task of ticket PHPBB3-11635: find and fix all bypasses of generate_text_for_* PHPBB3-11638
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/viewtopic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 9274539ab4..d18478fbfa 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1385,7 +1385,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
}
// Parse the message and subject
- $message = generate_text_for_display($message, $row['bbcode_uid'], $row['bbcode_bitfield'], ($row['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES, true);
+ $message = generate_text_for_display($row['post_text'], $row['bbcode_uid'], $row['bbcode_bitfield'], ($row['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES, true);
if (!empty($attachments[$row['post_id']]))
{