diff options
author | plegall <plg@piwigo.org> | 2005-11-12 21:24:10 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-11-12 21:24:10 +0000 |
commit | b9970ec34c3811af535d9722fb8e075566fd780d (patch) | |
tree | 1ac0053d3f9d525c3614af2f9aa385233f6fa33b /admin/user_list.php | |
parent | 429a108ff17ed27d965c028e7d545467630f4aa2 (diff) |
- bug 198 fixed: associating users to a group was not visible at validation,
the page needed to be reloaded. Added a redirect after updates.
git-svn-id: http://piwigo.org/svn/trunk@931 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/user_list.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/admin/user_list.php b/admin/user_list.php index 4f3cd9c74..dadb706c4 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -382,6 +382,16 @@ DELETE FROM '.USER_GROUP_TABLE.' mass_updates(USER_INFOS_TABLE, $dbfields, $datas); } + + redirect( + PHPWG_ROOT_PATH. + 'admin.php'. + get_query_string_diff( + array( + 'start' + ) + ) + ); } // +-----------------------------------------------------------------------+ |