diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2016-11-20 18:47:19 +0100 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2016-11-20 18:47:19 +0100 |
commit | 2f1d2e847e9bb08b22ed42e8dc06362d962d2efb (patch) | |
tree | 7e181e057d96d48b20fb6f9333e755df2c4d4e8f /phpBB/includes | |
parent | c2836725f9692e907d77edce7c609142661af6c1 (diff) | |
download | forums-2f1d2e847e9bb08b22ed42e8dc06362d962d2efb.tar forums-2f1d2e847e9bb08b22ed42e8dc06362d962d2efb.tar.gz forums-2f1d2e847e9bb08b22ed42e8dc06362d962d2efb.tar.bz2 forums-2f1d2e847e9bb08b22ed42e8dc06362d962d2efb.tar.xz forums-2f1d2e847e9bb08b22ed42e8dc06362d962d2efb.zip |
[ticket/13429] Fix @change tags without description
PHPBB3-13429
Diffstat (limited to 'phpBB/includes')
-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 0b39339c7f..f4c5c4b84c 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -276,7 +276,7 @@ function user_add($user_row, $cp_data = false, $notifications_data = null) * @var array cp_data Array of Custom profile fields submited to user_add * @var array sql_ary Array of data to be inserted when a user is added * @since 3.1.0-a1 - * @change 3.1.0-b5 + * @change 3.1.0-b5 Added user_row and cp_data */ $vars = array('user_row', 'cp_data', 'sql_ary'); extract($phpbb_dispatcher->trigger_event('core.user_add_modify_data', compact($vars))); |