diff options
author | Igor Wiedler <igor@wiedler.ch> | 2011-08-14 20:22:28 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2011-08-14 20:22:28 +0200 |
commit | 749ab6547dafe42bf47b5687ddc24f58f2913ca7 (patch) | |
tree | 60c95272da0aa09d2b65d8c87b6fdb5fbbd624d9 /phpBB | |
parent | 11d20e0ec40d2aedaa33d796aa8634d88b980f5f (diff) | |
download | forums-749ab6547dafe42bf47b5687ddc24f58f2913ca7.tar forums-749ab6547dafe42bf47b5687ddc24f58f2913ca7.tar.gz forums-749ab6547dafe42bf47b5687ddc24f58f2913ca7.tar.bz2 forums-749ab6547dafe42bf47b5687ddc24f58f2913ca7.tar.xz forums-749ab6547dafe42bf47b5687ddc24f58f2913ca7.zip |
[ticket/9608] Remove use of references in topic_review
PHPBB3-9608
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
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']; |