1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-09-16 02:52:11 +02:00

Compare commits

..

1 Commits

Author SHA1 Message Date
(no author)
b93983a479 This commit was manufactured by cvs2svn to create tag
'release_2_0_8'.

git-svn-id: file:///svn/phpbb/tags/release_2_0_8@4877 89ea8834-ac86-4346-8a33-228a782c2dd0
2004-03-25 15:57:20 +00:00
2 changed files with 1 additions and 2 deletions

View File

@@ -62,7 +62,6 @@ p,ul,td {font-size:10pt;}
<li>Limited allowed images in img bbcode tag to jpg, jpeg, gif and png</li>
<li>Fixed redirect problems - 2.0.7a</li>
<li>Fixed sql injection vulnerability in search - 2.0.7a</li>
<li>Fixed sql injection vulnerability in privmsg - 2.0.8a</li>
</ul>
<a name="206"></a><h3 class="h3">1.ii. Changes since 2.0.6</h3>

View File

@@ -212,7 +212,7 @@ else if ( $mode == 'read' )
break;
case 'savebox':
$l_box_name = $lang['Savebox'];
$pm_sql_user = "AND ( ( pm.privmsgs_to_userid = " . $userdata['user_id'] . "
$pm_sql_user .= "AND ( ( pm.privmsgs_to_userid = " . $userdata['user_id'] . "
AND pm.privmsgs_type = " . PRIVMSGS_SAVED_IN_MAIL . " )
OR ( pm.privmsgs_from_userid = " . $userdata['user_id'] . "
AND pm.privmsgs_type = " . PRIVMSGS_SAVED_OUT_MAIL . " )