diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-11-13 15:29:54 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-11-14 02:01:14 +0100 |
commit | 53cb148d70b8ab89f8f8e6fba98a63f290ebf21b (patch) | |
tree | c950de949991a0b8c3c6363e86a5445a01ac12c0 /phpBB/includes/groupposition/interface.php | |
parent | 8ee908d32e898c31fb1b76c8c42c34a7e7dcf8c3 (diff) | |
download | forums-53cb148d70b8ab89f8f8e6fba98a63f290ebf21b.tar forums-53cb148d70b8ab89f8f8e6fba98a63f290ebf21b.tar.gz forums-53cb148d70b8ab89f8f8e6fba98a63f290ebf21b.tar.bz2 forums-53cb148d70b8ab89f8f8e6fba98a63f290ebf21b.tar.xz forums-53cb148d70b8ab89f8f8e6fba98a63f290ebf21b.zip |
[ticket/10411] Fix comment in interface and some problems in teampage
Category names on the teampage can not be empty.
Also fixing a problem with the delta when moving a category.
PHPBB3-10411
Diffstat (limited to 'phpBB/includes/groupposition/interface.php')
-rw-r--r-- | phpBB/includes/groupposition/interface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/groupposition/interface.php b/phpBB/includes/groupposition/interface.php index b5d8a6b097..9eadb049c8 100644 --- a/phpBB/includes/groupposition/interface.php +++ b/phpBB/includes/groupposition/interface.php @@ -47,10 +47,10 @@ interface phpbb_groupposition_interface public function add_group($group_id); /** - * Deletes a group by setting the field to self::GROUP_DISABLED and closing the gap in the list. + * Deletes a group by group_id * * @param int $group_id group_id of the group to be deleted - * @param bool $skip_group Skip setting the group to GROUP_DISABLED, to save the query, when you need to update it anyway. + * @param bool $skip_group Skip setting the value for this group, to save the query, when you need to update it anyway. * @return null */ public function delete_group($group_id, $skip_group = false); |