diff options
author | rechosen <rechosen@gmail.com> | 2013-09-23 18:10:41 +0200 |
---|---|---|
committer | rechosen <rechosen@gmail.com> | 2013-09-23 18:10:41 +0200 |
commit | bf5ce957cf046ab0b8d00fdc36d825bceccbfad6 (patch) | |
tree | 23f43b5e5d7a95b24cb0389590a0f8adc71fd53b /phpBB | |
parent | e45b69ee094d8e3cb8cb91ebdcddb8f50db7b806 (diff) | |
download | forums-bf5ce957cf046ab0b8d00fdc36d825bceccbfad6.tar forums-bf5ce957cf046ab0b8d00fdc36d825bceccbfad6.tar.gz forums-bf5ce957cf046ab0b8d00fdc36d825bceccbfad6.tar.bz2 forums-bf5ce957cf046ab0b8d00fdc36d825bceccbfad6.tar.xz forums-bf5ce957cf046ab0b8d00fdc36d825bceccbfad6.zip |
[ticket/11786] Fix indentation in the PHPDoc of core.group_delete_user_before
The core.group_delete_user_before event had bad indentation in its PHPDoc.
Fixed.
PHPBB3-11786
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions_user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 4fcce67801..c5ced94633 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -2752,8 +2752,8 @@ function group_user_del($group_id, $user_id_ary = false, $username_ary = false, * Event before users are removed from a group * * @event core.group_delete_user_before - * @var int group_id ID of the group from which users are deleted - * @var string group_name Name of the group + * @var int group_id ID of the group from which users are deleted + * @var string group_name Name of the group * @var array user_id_ary IDs of the users which are removed * @var array username_ary names of the users which are removed * @since 3.1-A1 |