mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
correctly decode message on quotepost (#2099)
git-svn-id: file:///svn/phpbb/trunk@6020 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
e1cf8fd13c
commit
13b9021ae4
1 changed files with 6 additions and 0 deletions
|
@ -181,6 +181,12 @@ function compose_pm($id, $mode, $action)
|
||||||
trigger_error('NO_AUTHOR');
|
trigger_error('NO_AUTHOR');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($action == 'quotepost')
|
||||||
|
{
|
||||||
|
// Decode text for message display
|
||||||
|
decode_message($message_text, $post['bbcode_uid']);
|
||||||
|
}
|
||||||
|
|
||||||
if ($action != 'delete')
|
if ($action != 'delete')
|
||||||
{
|
{
|
||||||
$enable_urls = $post['enable_magic_url'];
|
$enable_urls = $post['enable_magic_url'];
|
||||||
|
|
Loading…
Add table
Reference in a new issue