diff options
author | z0rglub <z0rglub@piwigo.org> | 2003-09-14 16:06:31 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2003-09-14 16:06:31 +0000 |
commit | 5464ab212bfbf7009d45d6c0565ce42d03b6f2aa (patch) | |
tree | 9b19cf6c2e6dbe88508f7fa04a95f4dc2bff0a02 | |
parent | 08c5ad08c2a898c6077bd2dc6a994f5dcae982eb (diff) |
Right link to change group permissions
git-svn-id: http://piwigo.org/svn/trunk@103 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/cat_perm.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/admin/cat_perm.php b/admin/cat_perm.php index 48c671552..bee92a405 100644 --- a/admin/cat_perm.php +++ b/admin/cat_perm.php @@ -120,6 +120,8 @@ if ( mysql_num_rows( $result ) > 0 ) } $vtp->setVar( $sub, 'group.groupname', $row['name'] ); $vtp->setVar( $sub, 'group.id', $row['id'] ); + $url = './admin.php?page=group_perm&group_id='.$row['id']; + $vtp->setVar( $sub, 'group.group_perm_link', add_session_id( $url ) ); $vtp->closeSession( $sub, 'group' ); } $vtp->closeSession( $sub, 'groups' ); |