mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-12 03:34:04 +02:00
[ticket/13455] Remove unnecessary calls to utf8_normalize_nfc()
PHPBB3-13455
This commit is contained in:
@@ -29,7 +29,7 @@ $forum_id = $request->variable('f', 0);
|
||||
$post_id = $request->variable('p', 0);
|
||||
$pm_id = $request->variable('pm', 0);
|
||||
$reason_id = $request->variable('reason_id', 0);
|
||||
$report_text = utf8_normalize_nfc($request->variable('report_text', '', true));
|
||||
$report_text = $request->variable('report_text', '', true);
|
||||
$user_notify = ($user->data['is_registered']) ? $request->variable('notify', 0) : false;
|
||||
|
||||
$submit = (isset($_POST['submit'])) ? true : false;
|
||||
|
Reference in New Issue
Block a user