aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2009-08-07 15:37:27 +0000
committerHenry Sudhof <kellanved@phpbb.com>2009-08-07 15:37:27 +0000
commitbc8e507c64a576eef209c5a72cf2965d56d6016a (patch)
treef1064c70ffa5d1fdef4e851457282fb033272beb /phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
parent04263dfa312f7daab82ab629477d785253af896a (diff)
downloadforums-bc8e507c64a576eef209c5a72cf2965d56d6016a.tar
forums-bc8e507c64a576eef209c5a72cf2965d56d6016a.tar.gz
forums-bc8e507c64a576eef209c5a72cf2965d56d6016a.tar.bz2
forums-bc8e507c64a576eef209c5a72cf2965d56d6016a.tar.xz
forums-bc8e507c64a576eef209c5a72cf2965d56d6016a.zip
include vs include_once
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9940 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php')
-rw-r--r--phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
index 3ad58851b4..b7b3ab07d3 100644
--- a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
@@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
if (!class_exists('phpbb_default_captcha'))
{
// we need the classic captcha code for tracking solutions and attempts
- include_once($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
+ include($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
}
/**