aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Schramm <oliver.schramm97@gmail.com>2015-01-11 19:29:33 +0100
committerOliver Schramm <oliver.schramm97@gmail.com>2015-01-11 19:29:33 +0100
commitf075fb78f694048a4115b145e59c110a5acffcdb (patch)
tree336e04bbac1fc89a9155157357b6309e0e9c5fec
parente8464d7fe235bf2c5ac428fc38a7fada4bcfb1bb (diff)
downloadforums-f075fb78f694048a4115b145e59c110a5acffcdb.tar
forums-f075fb78f694048a4115b145e59c110a5acffcdb.tar.gz
forums-f075fb78f694048a4115b145e59c110a5acffcdb.tar.bz2
forums-f075fb78f694048a4115b145e59c110a5acffcdb.tar.xz
forums-f075fb78f694048a4115b145e59c110a5acffcdb.zip
[ticket/13490] Allow multibyte characters in edit reason
PHPBB3-13490
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 10c3b696e6..ac412c0c73 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1736,7 +1736,7 @@ $page_data = array(
'POST_DATE' => ($post_data['post_time']) ? $user->format_date($post_data['post_time']) : '',
'ERROR' => (sizeof($error)) ? implode('<br />', $error) : '',
'TOPIC_TIME_LIMIT' => (int) $post_data['topic_time_limit'],
- 'EDIT_REASON' => $request->variable('edit_reason', ''),
+ 'EDIT_REASON' => $request->variable('edit_reason', '', true),
'SHOW_PANEL' => $request->variable('show_panel', ''),
'U_VIEW_FORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id"),
'U_VIEW_TOPIC' => ($mode != 'post') ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&amp;t=$topic_id") : '',