diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-03-23 01:51:04 +0100 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-03-23 01:51:04 +0100 |
commit | fd230cd9c59ee90828f48abb6681c96ef3fb8277 (patch) | |
tree | f5e0507b39b428d71f50b8533699fe8921f9e29d /phpBB/phpbb | |
parent | a2454285bd32ae8df24b62dea648de3b293a5f41 (diff) | |
download | forums-fd230cd9c59ee90828f48abb6681c96ef3fb8277.tar forums-fd230cd9c59ee90828f48abb6681c96ef3fb8277.tar.gz forums-fd230cd9c59ee90828f48abb6681c96ef3fb8277.tar.bz2 forums-fd230cd9c59ee90828f48abb6681c96ef3fb8277.tar.xz forums-fd230cd9c59ee90828f48abb6681c96ef3fb8277.zip |
[ticket/13718] Added missing global declaration
PHPBB3-13718
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/captcha/plugins/captcha_abstract.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/captcha/plugins/captcha_abstract.php b/phpBB/phpbb/captcha/plugins/captcha_abstract.php index 2c0b95411e..799947a84e 100644 --- a/phpBB/phpbb/captcha/plugins/captcha_abstract.php +++ b/phpBB/phpbb/captcha/plugins/captcha_abstract.php @@ -117,7 +117,7 @@ abstract class captcha_abstract function get_demo_template($id) { - global $config, $user, $template, $phpbb_admin_path, $phpEx; + global $config, $user, $template, $request, $phpbb_admin_path, $phpEx; $variables = ''; |