diff options
author | Cesar G <prototech91@gmail.com> | 2015-03-23 08:49:43 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2015-03-23 08:49:43 -0700 |
commit | 8423ae12019e8c10076239216049a4d9418112fb (patch) | |
tree | 276c7b840d6e5a8a82788a213605879b98fcdf6f /phpBB/phpbb | |
parent | 9a9a665a0a4f34707acffcd5efbe2e2e62660758 (diff) | |
parent | fd230cd9c59ee90828f48abb6681c96ef3fb8277 (diff) | |
download | forums-8423ae12019e8c10076239216049a4d9418112fb.tar forums-8423ae12019e8c10076239216049a4d9418112fb.tar.gz forums-8423ae12019e8c10076239216049a4d9418112fb.tar.bz2 forums-8423ae12019e8c10076239216049a4d9418112fb.tar.xz forums-8423ae12019e8c10076239216049a4d9418112fb.zip |
Merge remote-tracking branch 's9e/ticket/13718'
* s9e/ticket/13718:
[ticket/13718] Added missing global declaration
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 = ''; |