aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorBruno Ais <brunoaiss@gmail.com>2013-07-20 16:19:27 +0100
committerBruno Ais <brunoaiss@gmail.com>2013-07-20 16:19:27 +0100
commitf1bfbde3f5bdb9191057f28dd623dc2a3a530bf7 (patch)
treeb35b560e1cd3259ab563bcd3b27b9cf9f4e91558 /phpBB
parent596e9bb69df2f5d0c07c0b8201cc770bbe5253a0 (diff)
downloadforums-f1bfbde3f5bdb9191057f28dd623dc2a3a530bf7.tar
forums-f1bfbde3f5bdb9191057f28dd623dc2a3a530bf7.tar.gz
forums-f1bfbde3f5bdb9191057f28dd623dc2a3a530bf7.tar.bz2
forums-f1bfbde3f5bdb9191057f28dd623dc2a3a530bf7.tar.xz
forums-f1bfbde3f5bdb9191057f28dd623dc2a3a530bf7.zip
[ticket/11643] Fixed typo in the variable name.
sub-task of ticket PHPBB3-11635: find and fix all bypasses of generate_text_for_* PHPBB3-11643
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/mcp/mcp_queue.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php
index 14490343c2..2c95dc6a67 100644
--- a/phpBB/includes/mcp/mcp_queue.php
+++ b/phpBB/includes/mcp/mcp_queue.php
@@ -132,7 +132,7 @@ class mcp_queue
$post_unread = (isset($topic_tracking_info[$post_info['topic_id']]) && $post_info['post_time'] > $topic_tracking_info[$post_info['topic_id']]) ? true : false;
// Process message, leave it uncensored
- $message = generate_text_for_display($post_info['message_text'], $post_info['bbcode_uid'], $post_info['bbcode_bitfield'], ($post_info['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES, false);
+ $message = generate_text_for_display($post_info['post_text'], $post_info['bbcode_uid'], $post_info['bbcode_bitfield'], ($post_info['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES, false);
if ($post_info['post_attachment'] && $auth->acl_get('u_download') && $auth->acl_get('f_download', $post_info['forum_id']))
{