diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-08-14 19:24:27 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-08-14 19:24:27 -0400 |
commit | 5fa096aca42688b07300ec4bc946972f1acdd5ed (patch) | |
tree | fc95b7bff83079f333d4bc49419f1e2cbf666d2b /phpBB/includes/functions_posting.php | |
parent | 5305f6a977eeb3c8455180d54c6a2f43639866f9 (diff) | |
parent | 749ab6547dafe42bf47b5687ddc24f58f2913ca7 (diff) | |
download | forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.tar forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.tar.gz forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.tar.bz2 forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.tar.xz forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.zip |
Merge remote-tracking branch 'igorw/ticket/9608' into develop
* igorw/ticket/9608:
[ticket/9608] Remove use of references in topic_review
[ticket/9608] Revert changes to normalizer
[ticket/9608] Remove blank line
[ticket/9608] Remove use of references in captcha and other places
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-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']; |