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/functions.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/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 1cdda60855..a2f8a57938 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3044,11 +3044,11 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa trigger_error('NO_AUTH_ADMIN'); } - $password = $request->untrimed_variable('password_' . $credential, '', true); + $password = $request->untrimmed_variable('password_' . $credential, '', true); } else { - $password = $request->untrimed_variable('password', '', true); + $password = $request->untrimmed_variable('password', '', true); } $username = request_var('username', '', true); |