aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/session.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-08-08 18:02:03 +0200
committerTristan Darricau <github@nicofuma.fr>2014-08-11 01:15:49 +0200
commit160ff7b912243dc14d871b820213ddcd20dd06f4 (patch)
treed6d2f0e7fa38cc5944c7a0fa438c1deea2adc1c6 /phpBB/phpbb/session.php
parente0d377bca70cff7846ba920a03b717aac1d208a4 (diff)
downloadforums-160ff7b912243dc14d871b820213ddcd20dd06f4.tar
forums-160ff7b912243dc14d871b820213ddcd20dd06f4.tar.gz
forums-160ff7b912243dc14d871b820213ddcd20dd06f4.tar.bz2
forums-160ff7b912243dc14d871b820213ddcd20dd06f4.tar.xz
forums-160ff7b912243dc14d871b820213ddcd20dd06f4.zip
[ticket/11854] Move captcha stuff to phpbb/ and use DI for plugins
PHPBB3-11854
Diffstat (limited to 'phpBB/phpbb/session.php')
-rw-r--r--phpBB/phpbb/session.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/phpBB/phpbb/session.php b/phpBB/phpbb/session.php
index 5a0d7c0031..a9dde5bbaa 100644
--- a/phpBB/phpbb/session.php
+++ b/phpBB/phpbb/session.php
@@ -962,7 +962,7 @@ class session
*/
function session_gc()
{
- global $db, $config, $phpbb_root_path, $phpEx;
+ global $db, $config, $phpbb_root_path, $phpEx, $phpbb_container;
$batch_size = 10;
@@ -1022,11 +1022,7 @@ class session
}
// only called from CRON; should be a safe workaround until the infrastructure gets going
- if (!class_exists('phpbb_captcha_factory', false))
- {
- include($phpbb_root_path . "includes/captcha/captcha_factory." . $phpEx);
- }
- $captcha_factory = new \phpbb_captcha_factory();
+ $captcha_factory = $phpbb_container->get('captchas.factory');
$captcha_factory->garbage_collect($config['captcha_plugin']);
$sql = 'DELETE FROM ' . LOGIN_ATTEMPT_TABLE . '