aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_profile.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-09-08 14:15:56 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-09-08 14:15:56 +0200
commitf2607fc9e80c6f9ad7543b7be5ea6f294aa6c40a (patch)
treee66e70073760fe6b362a7e262114e3ef391a09cc /phpBB/includes/ucp/ucp_profile.php
parentb62c37c5799d4b9e018358c38a731d6664acadf1 (diff)
downloadforums-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.php6
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');