- Fixed problem with SID not delivered to next page in groupcp.php if cookies were disabled... (obviously a problem since 2.0.6)

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@4928 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2004-07-11 22:18:27 +00:00
parent 68ac67277b
commit b027ef385d
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ p,ul,td {font-size:10pt;}
<li>Fixed getting group moderator in groupcp.php if running oracle backend - spotted by <b>pakman</b></li> <li>Fixed getting group moderator in groupcp.php if running oracle backend - spotted by <b>pakman</b></li>
<li>Fixed use of non-existing result variable in modcp (poster_id instead of user_id)</li> <li>Fixed use of non-existing result variable in modcp (poster_id instead of user_id)</li>
<li>Fixed several vulnerabilities (XSS, SQL Injection and path disclosure) only possible with register_globals enabled - <b>Matthew C. Kavanagh, Janek Vind</b></li> <li>Fixed several vulnerabilities (XSS, SQL Injection and path disclosure) only possible with register_globals enabled - <b>Matthew C. Kavanagh, Janek Vind</b></li>
<li> <li>Fixed problem with SID not delivered to next page in groupcp.php</li>
</ul> </ul>
<a name="207"></a><h3 class="h3">l.ii. Changes since 2.0.7</h3> <a name="207"></a><h3 class="h3">l.ii. Changes since 2.0.7</h3>

View file

@ -1245,7 +1245,7 @@ else
$template->assign_block_vars('switch_groups_remaining', array() ); $template->assign_block_vars('switch_groups_remaining', array() );
} }
$s_hidden_fields = ''; $s_hidden_fields = '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />';
$template->assign_vars(array( $template->assign_vars(array(
'L_GROUP_MEMBERSHIP_DETAILS' => $lang['Group_member_details'], 'L_GROUP_MEMBERSHIP_DETAILS' => $lang['Group_member_details'],