From 749ab6547dafe42bf47b5687ddc24f58f2913ca7 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Sun, 14 Aug 2011 20:22:28 +0200 Subject: [PATCH] [ticket/9608] Remove use of references in topic_review PHPBB3-9608 --- phpBB/includes/functions_posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 9e81533cea..4ca76344de 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1078,7 +1078,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id continue; } - $row =& $rowset[$post_list[$i]]; + $row = $rowset[$post_list[$i]]; $poster_id = $row['user_id']; $post_subject = $row['post_subject'];