diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-12-04 11:02:59 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-01-06 13:52:11 +0100 |
commit | 6c25ad48224e71b080e04a79dfd47b711164e0f8 (patch) | |
tree | 1c804df5785c5b1b26433e7fa2cbc983b18eb2f7 /phpBB/includes/functions_module.php | |
parent | f50ba9ab4f6e74e4d472c9e2012dfdd29720dfe9 (diff) | |
download | forums-6c25ad48224e71b080e04a79dfd47b711164e0f8.tar forums-6c25ad48224e71b080e04a79dfd47b711164e0f8.tar.gz forums-6c25ad48224e71b080e04a79dfd47b711164e0f8.tar.bz2 forums-6c25ad48224e71b080e04a79dfd47b711164e0f8.tar.xz forums-6c25ad48224e71b080e04a79dfd47b711164e0f8.zip |
[ticket/13454] Remove unused variables
Part 3 should fix tests up a little bit again.
PHPBB3-13454
Diffstat (limited to 'phpBB/includes/functions_module.php')
-rw-r--r-- | phpBB/includes/functions_module.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php index c6ee1838be..2e715d5e87 100644 --- a/phpBB/includes/functions_module.php +++ b/phpBB/includes/functions_module.php @@ -387,7 +387,8 @@ class p_master */ static function module_auth($module_auth, $forum_id) { - global $phpbb_dispatcher; + global $auth, $config; + global $request, $phpbb_extension_manager, $phpbb_dispatcher; $module_auth = trim($module_auth); |