mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 13:58:54 +00:00
[ticket/9608] Remove use of references in topic_review
PHPBB3-9608
This commit is contained in:
parent
11d20e0ec4
commit
749ab6547d
1 changed files with 1 additions and 1 deletions
|
@ -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'];
|
||||
|
|
Loading…
Add table
Reference in a new issue