diff options
author | Preston Cody <codeman@gentoo.org> | 2006-07-15 05:21:58 +0000 |
---|---|---|
committer | Preston Cody <codeman@gentoo.org> | 2006-07-15 05:21:58 +0000 |
commit | bd76526f2f1053e3bec023158d465c4a0afba31d (patch) | |
tree | b52ecf33664485d43be5d938eaa96d9e5ebc9577 /scire/user.php | |
parent | Updating the scire server and client programs with their current (diff) | |
download | scire-bd76526f2f1053e3bec023158d465c4a0afba31d.tar.gz scire-bd76526f2f1053e3bec023158d465c4a0afba31d.tar.bz2 scire-bd76526f2f1053e3bec023158d465c4a0afba31d.zip |
various updates regarding permissions
added categories to the code, so that permissions
can be grouped. A special group will consist of
Scire UI permissions.
svn path=/; revision=128
Diffstat (limited to 'scire/user.php')
-rwxr-xr-x | scire/user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scire/user.php b/scire/user.php index 407aa28..a43742a 100755 --- a/scire/user.php +++ b/scire/user.php @@ -109,7 +109,7 @@ switch($_GET['Action']) { $smarty->assign('gacl_userid', $_GET['gacl_userid']); $ingroups = array(); $ingroups = $acl->get_object_groups($_GET['gacl_userid'],'ARO'); - var_dump($ingroups); + #var_dump($ingroups); $smarty->assign('ingroups', $ingroups); case "create": $smarty->assign('desc', "Add a user."); @@ -172,5 +172,5 @@ $smarty->assign('leftbar_menu', $leftbar_menu); $smarty->assign('Action', $_GET['Action']); $smarty->assign('status', $status); $smarty->display('user.tpl'); -var_dump($_POST); +#var_dump($_POST); ?> |