|
From: Paul S. O. <ps...@us...> - 2001-12-16 02:06:16
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv14834
Modified Files:
groupcp.php
Log Message:
Should fix bug #493448 I can't believe the cockup I made, that was a good one even by my standards ... PS: This one works ...
Index: groupcp.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/groupcp.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** groupcp.php 2001/12/16 01:43:20 1.32
--- groupcp.php 2001/12/16 02:06:14 1.33
***************
*** 1199,1202 ****
--- 1199,1204 ----
}
+ $s_hidden_fields = '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />';
+
$template->assign_vars(array(
"L_GROUP_MEMBERSHIP_DETAILS" => $lang['Group_member_details'],
***************
*** 1210,1213 ****
--- 1212,1216 ----
"S_USERGROUP_ACTION" => append_sid("groupcp.$phpEx"),
+ "S_HIDDEN_FIELDS" => $s_hidden_fields,
"GROUP_LIST_SELECT" => $s_group_list,
|