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/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/posting.php')
| -rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 0809b5a685..74a8ebecb5 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -180,7 +180,7 @@ $user->setup(array('posting', 'mcp', 'viewtopic'), $post_data['forum_style']); if ($config['enable_post_confirm'] && !$user->data['is_registered']) { include($phpbb_root_path . 'includes/captcha/captcha_factory.' . $phpEx); - $captcha =& phpbb_captcha_factory::get_instance($config['captcha_plugin']); + $captcha = phpbb_captcha_factory::get_instance($config['captcha_plugin']); $captcha->init(CONFIRM_POST); } |
