aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_messenger.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-12-04 11:50:39 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-01-06 13:52:11 +0100
commit266576c6a4224f4b803040c678020e825a1510b5 (patch)
treec8fdfc8cce749be837a23d7a8288027f59865d60 /phpBB/includes/functions_messenger.php
parent6c25ad48224e71b080e04a79dfd47b711164e0f8 (diff)
downloadforums-266576c6a4224f4b803040c678020e825a1510b5.tar
forums-266576c6a4224f4b803040c678020e825a1510b5.tar.gz
forums-266576c6a4224f4b803040c678020e825a1510b5.tar.bz2
forums-266576c6a4224f4b803040c678020e825a1510b5.tar.xz
forums-266576c6a4224f4b803040c678020e825a1510b5.zip
[ticket/13454] Remove unused variables
Part 4 PHPBB3-13454
Diffstat (limited to 'phpBB/includes/functions_messenger.php')
-rw-r--r--phpBB/includes/functions_messenger.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php
index a08b485e52..1071917c21 100644
--- a/phpBB/includes/functions_messenger.php
+++ b/phpBB/includes/functions_messenger.php
@@ -550,7 +550,7 @@ class messenger
*/
function msg_jabber()
{
- global $config, $db, $user, $phpbb_root_path, $phpEx;
+ global $config, $user, $phpbb_root_path, $phpEx;
if (empty($config['jab_enable']) || empty($config['jab_host']) || empty($config['jab_username']) || empty($config['jab_password']))
{
@@ -622,7 +622,7 @@ class messenger
*/
protected function setup_template()
{
- global $config, $phpbb_path_helper, $user, $phpbb_extension_manager, $phpbb_container, $phpbb_filesystem;
+ global $phpbb_extension_manager, $phpbb_container, $phpbb_filesystem;
if ($this->template instanceof \phpbb\template\template)
{
@@ -714,7 +714,7 @@ class queue
*/
function process()
{
- global $db, $config, $phpEx, $phpbb_root_path, $user;
+ global $config, $phpEx, $phpbb_root_path, $user;
$lock = new \phpbb\lock\flock($this->cache_file);
$lock->acquire();