mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 04:48:53 +00:00
That's it for me tonight ... come back tomorrow for another thrilling installment in the "phpBB2 bug show"
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3139 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
84e3c54967
commit
5776168e55
3 changed files with 6 additions and 4 deletions
|
@ -117,7 +117,8 @@ h3 {font-size:12pt;color:blue}
|
|||
<li>Fixed non-XHTML compliant img tags in privmsg.php</li>
|
||||
<li>Fixed non-deletion of announcements and polls when removing forum contents in forum admin</li>
|
||||
<li>Fixed non-pruning of watched topics table when pruning related topics</li>
|
||||
<li></li>
|
||||
<li>Enable GET redirect on logout</li>
|
||||
<li>Added check for IE6.x to viewtopic ICQ indicator javascript</li>
|
||||
<li></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
@ -131,9 +131,10 @@ if( isset($HTTP_POST_VARS['login']) || isset($HTTP_GET_VARS['login']) || isset($
|
|||
session_end($userdata['session_id'], $userdata['user_id']);
|
||||
}
|
||||
|
||||
if( !empty($HTTP_POST_VARS['redirect']) )
|
||||
if (!empty($HTTP_POST_VARS['redirect']) || !empty($HTTP_GET_VARS['redirect']))
|
||||
{
|
||||
header($header_location . append_sid($HTTP_POST_VARS['redirect'], true));
|
||||
$redirect = (!empty($HTTP_POST_VARS['redirect'])) ? $HTTP_POST_VARS['redirect'] : $HTTP_GET_VARS['redirect']
|
||||
header($header_location . append_sid($redirect, true));
|
||||
exit;
|
||||
}
|
||||
else
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
<tr>
|
||||
<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!--
|
||||
|
||||
if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 )
|
||||
if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 && navigator.userAgent.indexOf('6.') == -1 )
|
||||
document.write(' {postrow.ICQ_IMG}');
|
||||
else
|
||||
document.write('</td><td> </td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_IMG}</div><div style="position:absolute;left:3px;top:-1px">{postrow.ICQ_STATUS_IMG}</div></div>');
|
||||
|
|
Loading…
Add table
Reference in a new issue