mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/13490] Allow multibyte characters in edit reason
PHPBB3-13490
This commit is contained in:
parent
e8464d7fe2
commit
f075fb78f6
1 changed files with 1 additions and 1 deletions
|
@ -1736,7 +1736,7 @@ $page_data = array(
|
||||||
'POST_DATE' => ($post_data['post_time']) ? $user->format_date($post_data['post_time']) : '',
|
'POST_DATE' => ($post_data['post_time']) ? $user->format_date($post_data['post_time']) : '',
|
||||||
'ERROR' => (sizeof($error)) ? implode('<br />', $error) : '',
|
'ERROR' => (sizeof($error)) ? implode('<br />', $error) : '',
|
||||||
'TOPIC_TIME_LIMIT' => (int) $post_data['topic_time_limit'],
|
'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', ''),
|
'SHOW_PANEL' => $request->variable('show_panel', ''),
|
||||||
'U_VIEW_FORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id"),
|
'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&t=$topic_id") : '',
|
'U_VIEW_TOPIC' => ($mode != 'post') ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id") : '',
|
||||||
|
|
Loading…
Add table
Reference in a new issue