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/request | |
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/request')
-rw-r--r-- | phpBB/includes/request/request.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/request/request.php b/phpBB/includes/request/request.php index c6b6610af5..aa62c3b610 100644 --- a/phpBB/includes/request/request.php +++ b/phpBB/includes/request/request.php @@ -222,7 +222,7 @@ class phpbb_request implements phpbb_request_interface * @return mixed The value of $_REQUEST[$var_name] run through {@link set_var set_var} to ensure that the type is the * the same as that of $default. If the variable is not set $default is returned. */ - public function untrimed_variable($var_name, $default, $multibyte, $super_global = phpbb_request_interface::REQUEST) + public function untrimmed_variable($var_name, $default, $multibyte, $super_global = phpbb_request_interface::REQUEST) { return $this->_variable($var_name, $default, $multibyte, $super_global, false); } @@ -338,7 +338,7 @@ class phpbb_request implements phpbb_request_interface } /** - * Helper function used by variable() and untrimed_variable(). + * Helper function used by variable() and untrimmed_variable(). * * @param string|array $var_name The form variable's name from which data shall be retrieved. * If the value is an array this may be an array of indizes which will give |