diff options
author | plegall <plg@piwigo.org> | 2005-01-19 23:36:43 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-01-19 23:36:43 +0000 |
commit | da60b94ca0450f7e9656564fbb944cc98d9b913c (patch) | |
tree | 8f0e4a379eb237ff110fe5052babede845d0c4c1 /admin/user_perm.php | |
parent | 54e615890c434d09492c6ba0c623b23bbcc8d246 (diff) |
- new features : multipages users list. The list can be ordered by id (same
effect than registration date) or by username. On each line, you can
access properties and permissions for the user
git-svn-id: http://piwigo.org/svn/trunk@709 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/user_perm.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/admin/user_perm.php b/admin/user_perm.php index 4c58725b5..2583306a1 100644 --- a/admin/user_perm.php +++ b/admin/user_perm.php @@ -36,6 +36,10 @@ if (isset($_POST['submituser'])) { $userdata = getuserdata($_POST['username']); } +else if (isset($_GET['user_id'])) +{ + $userdata = getuserdata(intval($_GET['user_id'])); +} else if (isset($_POST['falsify']) and isset($_POST['cat_true']) and count($_POST['cat_true']) > 0) |