aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-05-27 23:07:00 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-05-27 23:07:00 +0200
commit96b4066368e6e9c7f701daac7440807cce345702 (patch)
tree6e63b1fc19b56c8bae49732aafe51a99726d0a81 /phpBB/includes
parentcc68ea5f6ffb2b2932f495e8290977461c2393c7 (diff)
parentb75f67231f77c7f982bdde363cf7765ebe08d2f6 (diff)
downloadforums-96b4066368e6e9c7f701daac7440807cce345702.tar
forums-96b4066368e6e9c7f701daac7440807cce345702.tar.gz
forums-96b4066368e6e9c7f701daac7440807cce345702.tar.bz2
forums-96b4066368e6e9c7f701daac7440807cce345702.tar.xz
forums-96b4066368e6e9c7f701daac7440807cce345702.zip
Merge remote-tracking branch 'marc1706/ticket/11578' into develop-olympus
* marc1706/ticket/11578: [ticket/11578] Add missing underscore after 'validate' function prefix
Diffstat (limited to 'phpBB/includes')
-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 6b6a9b1f9f..2b26c6787c 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1247,7 +1247,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))
{