diff options
author | Nicofuma <github@nicofuma.fr> | 2014-04-26 15:46:50 +0200 |
---|---|---|
committer | Nicofuma <github@nicofuma.fr> | 2014-04-26 15:46:50 +0200 |
commit | 6ba61785f8da8df917866055e0119bc4fceeae0d (patch) | |
tree | b62b6fc1267bcd434d297d39465f3211a80a3602 /phpBB/includes/functions_user.php | |
parent | a29f3c878a799b1a39e239b9d01d8e800ae949ee (diff) | |
download | forums-6ba61785f8da8df917866055e0119bc4fceeae0d.tar forums-6ba61785f8da8df917866055e0119bc4fceeae0d.tar.gz forums-6ba61785f8da8df917866055e0119bc4fceeae0d.tar.bz2 forums-6ba61785f8da8df917866055e0119bc4fceeae0d.tar.xz forums-6ba61785f8da8df917866055e0119bc4fceeae0d.zip |
[ticket/12097] Bug fix and adding unit test
PHPBB3-12097
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 354e79a672..97af7ada04 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -1329,7 +1329,7 @@ function validate_data($data, $val_ary) if (is_array($function)) { - $result = call_user_func_array($function[0], 'validate_' . $function[1], $validate); + $result = call_user_func_array(array($function[0], 'validate_' . $function[1]), $validate); } else { |