diff options
author | plegall <plg@piwigo.org> | 2006-04-26 21:27:02 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-04-26 21:27:02 +0000 |
commit | 59d2febb48fc1a8690d1385c8885433b639e3281 (patch) | |
tree | 0bf5b35fdb366f51c5a6eb218c6a8b30a33d1902 | |
parent | 5865079907e0f2bfa2ee3e5b840929fefe361fc5 (diff) |
bug 347 fixed: need add_session_id function for identification without
cookie (this correction can't be merge to current trunk because cookies are
now mandatory).
git-svn-id: http://piwigo.org/svn/branches/branch-1_5@1279 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | admin/group_list.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/group_list.php b/admin/group_list.php index 7bc08b3f4..195d42ac5 100644 --- a/admin/group_list.php +++ b/admin/group_list.php @@ -162,8 +162,8 @@ SELECT COUNT(*) 'NAME' => $row['name'], 'MEMBERS' => sprintf(l10n('%d members'), $counter), 'U_MEMBERS' => $members_url.$row['id'], - 'U_DELETE' => $del_url.$row['id'], - 'U_PERM' => $perm_url.$row['id'] + 'U_DELETE' => add_session_id($del_url.$row['id']), + 'U_PERM' => add_session_id($perm_url.$row['id']) ) ); } |