- Timestamp:
- Dec 19, 2009, 9:22:13 PM (15 years ago)
- Location:
- branches/2.0/admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/admin/group_list.php
r3046 r4529 33 33 // +-----------------------------------------------------------------------+ 34 34 check_status(ACCESS_ADMINISTRATOR); 35 36 if (!empty($_POST) or isset($_GET['delete']) or isset($_GET['toggle_is_default'])) 37 { 38 check_pwg_token(); 39 } 35 40 36 41 // +-----------------------------------------------------------------------+ … … 156 161 'F_ADD_ACTION' => get_root_url().'admin.php?page=group_list', 157 162 'U_HELP' => get_root_url().'popuphelp.php?page=group_list', 163 'PWG_TOKEN' => get_pwg_token(), 158 164 ) 159 165 ); … … 192 198 'MEMBERS' => l10n_dec('%d member', '%d members', $counter), 193 199 'U_MEMBERS' => $members_url.$row['id'], 194 'U_DELETE' => $del_url.$row['id'] ,200 'U_DELETE' => $del_url.$row['id'].'&pwg_token='.get_pwg_token(), 195 201 'U_PERM' => $perm_url.$row['id'], 196 'U_ISDEFAULT' => $toggle_is_default_url.$row['id'] 202 'U_ISDEFAULT' => $toggle_is_default_url.$row['id'].'&pwg_token='.get_pwg_token(), 197 203 ) 198 204 ); -
branches/2.0/admin/template/goto/group_list.tpl
r2534 r4529 5 5 6 6 <form method="post" name="add_user" action="{$F_ADD_ACTION}" class="properties"> 7 <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}" /> 7 8 <fieldset> 8 9 <legend>{'Add group'|@translate}</legend>
Note: See TracChangeset
for help on using the changeset viewer.