diff options
author | Gaëtan Muller <m.gaetan89@gmail.com> | 2015-02-02 21:35:46 +0100 |
---|---|---|
committer | Gaëtan Muller <m.gaetan89@gmail.com> | 2015-02-03 20:50:40 +0100 |
commit | abcb2680eec86dc8016c489ebc7362e29be9e4df (patch) | |
tree | ea0491929e6c625d639e4036166365aaae582fc7 /phpBB/includes/acp/acp_words.php | |
parent | [ticket/13455] Update calls to `request_var()` (diff) | |
download | phpbb-abcb2680eec86dc8016c489ebc7362e29be9e4df.tar.gz phpbb-abcb2680eec86dc8016c489ebc7362e29be9e4df.tar.bz2 phpbb-abcb2680eec86dc8016c489ebc7362e29be9e4df.zip |
[ticket/13455] Remove unnecessary calls to `utf8_normalize_nfc()`
PHPBB3-13455
Diffstat (limited to 'phpBB/includes/acp/acp_words.php')
-rw-r--r-- | phpBB/includes/acp/acp_words.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_words.php b/phpBB/includes/acp/acp_words.php index eef9199130..d28aa8e60b 100644 --- a/phpBB/includes/acp/acp_words.php +++ b/phpBB/includes/acp/acp_words.php @@ -89,8 +89,8 @@ class acp_words } $word_id = $request->variable('id', 0); - $word = utf8_normalize_nfc($request->variable('word', '', true)); - $replacement = utf8_normalize_nfc($request->variable('replacement', '', true)); + $word = $request->variable('word', '', true); + $replacement = $request->variable('replacement', '', true); if ($word === '' || $replacement === '') { |