1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/9608] Remove use of references in topic_review

PHPBB3-9608
This commit is contained in:
Igor Wiedler
2011-08-14 20:22:28 +02:00
parent 11d20e0ec4
commit 749ab6547d

View File

@@ -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'];