diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-09-08 14:15:56 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-09-08 14:15:56 +0200 |
commit | f2607fc9e80c6f9ad7543b7be5ea6f294aa6c40a (patch) | |
tree | e66e70073760fe6b362a7e262114e3ef391a09cc /phpBB/includes/ucp/ucp_profile.php | |
parent | b62c37c5799d4b9e018358c38a731d6664acadf1 (diff) | |
download | forums-f2607fc9e80c6f9ad7543b7be5ea6f294aa6c40a.tar forums-f2607fc9e80c6f9ad7543b7be5ea6f294aa6c40a.tar.gz forums-f2607fc9e80c6f9ad7543b7be5ea6f294aa6c40a.tar.bz2 forums-f2607fc9e80c6f9ad7543b7be5ea6f294aa6c40a.tar.xz forums-f2607fc9e80c6f9ad7543b7be5ea6f294aa6c40a.zip |
[ticket/8713] Rename untrimed_variable() to untrimmed_variable().
PHPBB3-8713
Diffstat (limited to 'phpBB/includes/ucp/ucp_profile.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_profile.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php index 68d5dd5d65..db1e3e4722 100644 --- a/phpBB/includes/ucp/ucp_profile.php +++ b/phpBB/includes/ucp/ucp_profile.php @@ -46,9 +46,9 @@ class ucp_profile $data = array( 'username' => utf8_normalize_nfc(request_var('username', $user->data['username'], true)), 'email' => strtolower(request_var('email', $user->data['user_email'])), - 'new_password' => $request->untrimed_variable('new_password', '', true), - 'cur_password' => $request->untrimed_variable('cur_password', '', true), - 'password_confirm' => $request->untrimed_variable('password_confirm', '', true), + 'new_password' => $request->untrimmed_variable('new_password', '', true), + 'cur_password' => $request->untrimmed_variable('cur_password', '', true), + 'password_confirm' => $request->untrimmed_variable('password_confirm', '', true), ); add_form_key('ucp_reg_details'); |