diff options
author | Matt Friedman <maf675@gmail.com> | 2014-07-11 13:40:45 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2014-07-11 13:40:45 -0700 |
commit | 14979e63992b661a6ed9d01c1b51ee528504e116 (patch) | |
tree | f43b28e20d0538241d5fe2cad8d3b0676867b039 /phpBB/includes/functions_acp.php | |
parent | 95032c31af61ced178ce8fe3494abdc514a8ebf2 (diff) | |
download | forums-14979e63992b661a6ed9d01c1b51ee528504e116.tar forums-14979e63992b661a6ed9d01c1b51ee528504e116.tar.gz forums-14979e63992b661a6ed9d01c1b51ee528504e116.tar.bz2 forums-14979e63992b661a6ed9d01c1b51ee528504e116.tar.xz forums-14979e63992b661a6ed9d01c1b51ee528504e116.zip |
[ticket/12841] Fix white space issues reported by sniffer
PHPBB3-12841
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r-- | phpBB/includes/functions_acp.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php index 13b070b82e..264276338a 100644 --- a/phpBB/includes/functions_acp.php +++ b/phpBB/includes/functions_acp.php @@ -663,8 +663,8 @@ function validate_range($value_ary, &$error) * * @param array $display_vars An array of existing config display vars * @param array $add_config_vars An array of new config display vars -* @param array $where Where to place the new config vars, -* before or after an exisiting config, as an array +* @param array $where Where to place the new config vars, +* before or after an exisiting config, as an array * of the form: array('after' => 'config_name') * @return array The array of config display vars */ @@ -679,6 +679,6 @@ function insert_config_array($display_vars, $add_config_vars, $where) array_slice($display_vars, $position) ); } - + return $display_vars; } |