Permissions tweak

This commit is contained in:
Ice
2008-04-14 20:19:36 +00:00
parent 91f8b7a531
commit 9139822134
3 changed files with 6 additions and 4 deletions

View File

@@ -34,7 +34,8 @@ if($announcement < 0)
}
else
{
for ($i = 0; $i < count($fetch_news); $i++)
$count = count($fetch_news)-1;
for ($i = 0; $i < $count; $i++)
{
if( isset($fetch_news[$i]['striped']) && $fetch_news[$i]['striped'] == true )
{
@@ -55,7 +56,7 @@ if($announcement < 0)
$topic_tracking_info = get_complete_topic_tracking($forum_id, $topic_id, $global_announce_list = false);
$unread_topic = (isset($topic_tracking_info[$topic_id]) && $fetch_news[$i]['topic_last_post_time'] > $topic_tracking_info[$topic_id]) ? true : false;
$real_forum_id = ( $forum_id == 0 ) ? $fetch_news[$i]['global_id']: $forum_id;
$real_forum_id = ( $forum_id == 0 ) ? $fetch_news['global_id']: $forum_id;
$template->assign_block_vars('announcements_row', array(
'ATTACH_ICON_IMG' => ($fetch_news[$i]['attachment']) ? $user->img('icon_topic_attach', $user->lang['TOTAL_ATTACHMENTS']) : '',

View File

@@ -44,7 +44,8 @@ if($news < 0)
}
else
{
for ($i = 0; $i < count($fetch_news); $i++)
$count = count($fetch_news)-1;
for ($i = 0; $i < $count; $i++)
{
if( isset($fetch_news[$i]['striped']) && $fetch_news[$i]['striped'] == true )
{

View File

@@ -267,7 +267,7 @@ function phpbb_fetch_posts($forum_from, $permissions, $number_of_posts, $text_le
$posts[$i]['attachment'] = ($row['topic_attachment']) ? true : false;
$posts[$i]['topic_views'] = $row['topic_views'];
$posts[$i]['forum_name'] = $row['forum_name'];
$posts[$i]['global_id'] = $global_f;
$posts['global_id'] = $global_f;
$i++;
}