1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-28 04:20:32 +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

@@ -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);