aboutsummaryrefslogtreecommitdiffstats
path: root/admin/group_list.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2006-11-02 23:11:43 +0000
committerrub <rub@piwigo.org>2006-11-02 23:11:43 +0000
commitac7f71bf1ede927910c061ed668c034721112e77 (patch)
tree1bd734f090a9f93dcdd888ee71ca347535da0ea4 /admin/group_list.php
parentbce8b9f680af4eb5481441e52e1d82b11da722be (diff)
Resolved Issue ID 0000575:
o Missing Help on screen Groups List/Group Management Resolved Issue ID 0000356: o Increase security on adviser mode (Screen Group List) git-svn-id: http://piwigo.org/svn/trunk@1591 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/group_list.php')
-rw-r--r--admin/group_list.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/admin/group_list.php b/admin/group_list.php
index 69edcb02a..ec0a06191 100644
--- a/admin/group_list.php
+++ b/admin/group_list.php
@@ -41,7 +41,7 @@ check_status(ACCESS_ADMINISTRATOR);
// | delete a group |
// +-----------------------------------------------------------------------+
-if (isset($_GET['delete']) and is_numeric($_GET['delete']))
+if (isset($_GET['delete']) and is_numeric($_GET['delete']) and !is_adviser())
{
// destruction of the access linked to the group
$query = '
@@ -84,7 +84,7 @@ DELETE
// | add a group |
// +-----------------------------------------------------------------------+
-if (isset($_POST['submit_add']))
+if (isset($_POST['submit_add']) and !is_adviser())
{
if (empty($_POST['groupname']))
{
@@ -126,7 +126,7 @@ INSERT INTO '.GROUPS_TABLE.'
// | toggle is default group property |
// +-----------------------------------------------------------------------+
-if (isset($_GET['toggle_is_default']) and is_numeric($_GET['toggle_is_default']))
+if (isset($_GET['toggle_is_default']) and is_numeric($_GET['toggle_is_default']) and !is_adviser())
{
$query = '
SELECT name, is_default
@@ -157,7 +157,8 @@ $template->set_filenames(array('group_list' => 'admin/group_list.tpl'));
$template->assign_vars(
array(
- 'F_ADD_ACTION' => PHPWG_ROOT_PATH.'admin.php?page=group_list'
+ 'F_ADD_ACTION' => PHPWG_ROOT_PATH.'admin.php?page=group_list',
+ 'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=group_list',
)
);