mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-21 07:51:33 +02:00
[ticket/13455] Remove unnecessary calls to utf8_normalize_nfc()
PHPBB3-13455
This commit is contained in:
@@ -144,7 +144,7 @@ class acp_bots
|
||||
include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx);
|
||||
|
||||
$bot_row = array(
|
||||
'bot_name' => utf8_normalize_nfc($request->variable('bot_name', '', true)),
|
||||
'bot_name' => $request->variable('bot_name', '', true),
|
||||
'bot_agent' => $request->variable('bot_agent', ''),
|
||||
'bot_ip' => $request->variable('bot_ip', ''),
|
||||
'bot_active' => $request->variable('bot_active', true),
|
||||
|
Reference in New Issue
Block a user