aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-05-27 23:07:06 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-05-27 23:07:06 +0200
commita3c5809f942da4c89a210d41b9632e57de68a6bc (patch)
tree695b3a80e5647e189824739904ffc8d5ef50facb /phpBB/includes/functions_user.php
parent8870d0701f791466badee063c8af8044995698d9 (diff)
parent96b4066368e6e9c7f701daac7440807cce345702 (diff)
downloadforums-a3c5809f942da4c89a210d41b9632e57de68a6bc.tar
forums-a3c5809f942da4c89a210d41b9632e57de68a6bc.tar.gz
forums-a3c5809f942da4c89a210d41b9632e57de68a6bc.tar.bz2
forums-a3c5809f942da4c89a210d41b9632e57de68a6bc.tar.xz
forums-a3c5809f942da4c89a210d41b9632e57de68a6bc.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/11578] Add missing underscore after 'validate' function prefix
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index 93a7c09107..7b11e4f01b 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1330,7 +1330,7 @@ function validate_data($data, $val_ary)
{
$function = array_shift($validate);
array_unshift($validate, $data[$var]);
- $function_prefix = (function_exists('phpbb_validate_' . $function)) ? 'phpbb_validate_' : 'validate';
+ $function_prefix = (function_exists('phpbb_validate_' . $function)) ? 'phpbb_validate_' : 'validate_';
if ($result = call_user_func_array($function_prefix . $function, $validate))
{