diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-12-08 23:38:56 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-12-08 23:38:56 +0100 |
commit | 7c05b881c5534520e978785ca6d27cad826fbc67 (patch) | |
tree | 86cccd6d97cbd688f240e4caa79ca66911186fcf | |
parent | 4bcec475fe64468526475b728726f57739eddeec (diff) | |
parent | 416b25b3241f1b3a9711869d6f27f014b6d57c57 (diff) | |
download | forums-7c05b881c5534520e978785ca6d27cad826fbc67.tar forums-7c05b881c5534520e978785ca6d27cad826fbc67.tar.gz forums-7c05b881c5534520e978785ca6d27cad826fbc67.tar.bz2 forums-7c05b881c5534520e978785ca6d27cad826fbc67.tar.xz forums-7c05b881c5534520e978785ca6d27cad826fbc67.zip |
Merge pull request #4075 from marc1706/ticket/14350
[ticket/14350] Remove duplicate semi-colon in functions_user
* marc1706/ticket/14350:
[ticket/14350] Remove duplicate semi-colon in functions_user
-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 f462a5dafb..2edc493500 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -2635,7 +2635,7 @@ function group_delete($group_id, $group_name = false) */ function group_user_add($group_id, $user_id_ary = false, $username_ary = false, $group_name = false, $default = false, $leader = 0, $pending = 0, $group_attributes = false) { - global $db, $auth, $user, $phpbb_container, $phpbb_log, $phpbb_dispatcher;; + global $db, $auth, $user, $phpbb_container, $phpbb_log, $phpbb_dispatcher; // We need both username and user_id info $result = user_get_id_name($user_id_ary, $username_ary); |