diff options
author | gweltas <gweltas@piwigo.org> | 2004-12-03 16:30:12 +0000 |
---|---|---|
committer | gweltas <gweltas@piwigo.org> | 2004-12-03 16:30:12 +0000 |
commit | 6fa03e0cca6855e041de004d49e0dd1b03bd644f (patch) | |
tree | ae05c6a88f896de2ab4ffea8d98641f1996e2be3 /admin/group_list.php | |
parent | b35dc19ab6da173cc663e49cb32389d7e6dbfdee (diff) |
- User control panel update (user side)
- User control panel update (admin side)
- Add of registration link on the main page
- Minor bug correction for group management
git-svn-id: http://piwigo.org/svn/trunk@631 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/group_list.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/admin/group_list.php b/admin/group_list.php index 3fbec59de..d399a6d69 100644 --- a/admin/group_list.php +++ b/admin/group_list.php @@ -34,10 +34,18 @@ include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' ); $error = array(); if ( isset( $_POST['delete'] ) && isset( $_POST['confirm_delete'] ) ) { + // destruction of the access linked to the group + $query = 'DELETE FROM '.GROUP_ACCESS_TABLE; + $query.= ' WHERE group_id = '.$_POST['group_id']; + $query.= ';'; + pwg_query( $query ); + + // destruction of the users links for this group $query = 'DELETE FROM ' . USER_GROUP_TABLE; $query.= ' WHERE group_id = '.$_POST['group_id']; pwg_query( $query ); + // destruction of the group $query = 'DELETE FROM ' . GROUPS_TABLE; $query.= ' WHERE id = '.$_POST['group_id']; $query.= ';'; |