1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

[ticket/8713] Rename untrimed_variable() to untrimmed_variable().

PHPBB3-8713
This commit is contained in:
Andreas Fischer
2012-09-08 14:15:56 +02:00
parent b62c37c579
commit f2607fc9e8
7 changed files with 16 additions and 16 deletions

View File

@@ -770,8 +770,8 @@ class acp_users
'username' => utf8_normalize_nfc(request_var('user', $user_row['username'], true)),
'user_founder' => request_var('user_founder', ($user_row['user_type'] == USER_FOUNDER) ? 1 : 0),
'email' => strtolower(request_var('user_email', $user_row['user_email'])),
'new_password' => $request->untrimed_variable('new_password', '', true),
'password_confirm' => $request->untrimed_variable('password_confirm', '', true),
'new_password' => $request->untrimmed_variable('new_password', '', true),
'password_confirm' => $request->untrimmed_variable('password_confirm', '', true),
);
// Validation data - we do not check the password complexity setting here