1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[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
This commit is contained in:
Joas Schilling
2012-11-13 15:29:54 +01:00
parent 8ee908d32e
commit 53cb148d70
2 changed files with 35 additions and 14 deletions

View File

@@ -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);