diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-06-17 17:16:03 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-06-17 17:16:03 +0000 |
commit | 1c02e243335a44834da4aee68c87fb4734d33b3f (patch) | |
tree | 64fd9faccf41158b42d50174c5b6a37ef2f6a81c | |
parent | 3aafcffec03c5f1771264896623a620ec29fe191 (diff) | |
download | forums-1c02e243335a44834da4aee68c87fb4734d33b3f.tar forums-1c02e243335a44834da4aee68c87fb4734d33b3f.tar.gz forums-1c02e243335a44834da4aee68c87fb4734d33b3f.tar.bz2 forums-1c02e243335a44834da4aee68c87fb4734d33b3f.tar.xz forums-1c02e243335a44834da4aee68c87fb4734d33b3f.zip |
BBCode parsing when warning
git-svn-id: file:///svn/phpbb/trunk@6089 89ea8834-ac86-4346-8a33-228a782c2dd0
-rwxr-xr-x | phpBB/includes/mcp/mcp_warn.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_warn.php b/phpBB/includes/mcp/mcp_warn.php index 13de52c457..a8ee952c93 100755 --- a/phpBB/includes/mcp/mcp_warn.php +++ b/phpBB/includes/mcp/mcp_warn.php @@ -247,7 +247,7 @@ function mcp_warn_post_view($id, $mode, $action) include_once($phpbb_root_path . 'includes/bbcode.' . $phpEx); $bbcode = new bbcode($userrow['bbcode_bitfield']); - $bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']); + $bbcode->bbcode_second_pass($message, $userrow['bbcode_uid'], $userrow['bbcode_bitfield']); } // Always process smilies after parsing bbcodes |