From 60bd3d89887b3b4f02d5167a78322873c9e89761 Mon Sep 17 00:00:00 2001 From: Ice Date: Mon, 21 Apr 2008 15:11:17 +0000 Subject: [PATCH] Missing Merge, (Read Full Bug) --- root/portal/includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/root/portal/includes/functions.php b/root/portal/includes/functions.php index 2c22728a..06017baa 100644 --- a/root/portal/includes/functions.php +++ b/root/portal/includes/functions.php @@ -280,7 +280,7 @@ function phpbb_fetch_posts($forum_from, $permissions, $number_of_posts, $text_le $global_f = $row['forum_id']; } - $posts[$i] = array( + $posts[$i] = array_merge($posts, array( 'post_text' => ap_validate($message), 'topic_id' => $row['topic_id'], 'topic_last_post_id' => $row['topic_last_post_id'], @@ -298,7 +298,7 @@ function phpbb_fetch_posts($forum_from, $permissions, $number_of_posts, $text_le 'attachment' => ($row['topic_attachment']) ? true : false, 'topic_views' => $row['topic_views'], 'forum_name' => $row['forum_name'] - ); + )); $posts['global_id'] = $global_f; $i++;