Permissions fix - seems like it didn't commit.

This commit is contained in:
Ice
2008-04-14 19:53:36 +00:00
parent 5743b12ad6
commit cdf7294d5f

View File

@@ -95,14 +95,14 @@ function phpbb_fetch_posts($forum_from, $permissions, $number_of_posts, $text_le
if( sizeof($forum_from) )
{
$disallow_access = array_diff($forum_from, $disallow_access);
if( !sizeof($disallow_access) )
{
return array();
}
foreach( $disallow_access as $acc_id )
{
$str_where .= "t.forum_id = $acc_id OR ";
if( $global_f === FALSE )
{
$global_f = $acc_id;
}
}
}
else
@@ -110,10 +110,6 @@ function phpbb_fetch_posts($forum_from, $permissions, $number_of_posts, $text_le
foreach( $disallow_access as $acc_id )
{
$str_where .= "t.forum_id <> $acc_id OR ";
if( $global_f === FALSE )
{
$global_f = $acc_id;
}
}
}
@@ -250,6 +246,11 @@ function phpbb_fetch_posts($forum_from, $permissions, $number_of_posts, $text_le
}
$message = smiley_text($message); // Always process smilies after parsing bbcodes
if( $global_f === FALSE )
{
$global_f = $row['forum_id'];
}
$posts[$i]['post_text'] = ap_validate($message);
$posts[$i]['topic_id'] = $row['topic_id'];
$posts[$i]['topic_last_post_id'] = $row['topic_last_post_id'];