diff options
author | Tristan Darricau <github@nicofuma.fr> | 2015-01-28 09:27:16 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2015-01-28 09:27:16 +0100 |
commit | 0bdb4c1ed6369a2efd8bf527b2bc48bcd69df1bb (patch) | |
tree | 527e1475e1e0fd0f011c56e3c2e56c769e08f8fa /phpBB/includes/acp/acp_jabber.php | |
parent | 828aa34ff99cecef3442e2d28dae5734f7db6e12 (diff) | |
parent | 7fc586080bf5e7b6e90dcf44526200d7c9356d57 (diff) | |
download | forums-0bdb4c1ed6369a2efd8bf527b2bc48bcd69df1bb.tar forums-0bdb4c1ed6369a2efd8bf527b2bc48bcd69df1bb.tar.gz forums-0bdb4c1ed6369a2efd8bf527b2bc48bcd69df1bb.tar.bz2 forums-0bdb4c1ed6369a2efd8bf527b2bc48bcd69df1bb.tar.xz forums-0bdb4c1ed6369a2efd8bf527b2bc48bcd69df1bb.zip |
Merge pull request #3263 from MGaetan89/ticket/13468
[ticket/13468] Change add_log() calls with $phpbb_log->add()
* MGaetan89/ticket/13468:
[ticket/13468] Update calls to `add_log()`
Diffstat (limited to 'phpBB/includes/acp/acp_jabber.php')
-rw-r--r-- | phpBB/includes/acp/acp_jabber.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_jabber.php b/phpBB/includes/acp/acp_jabber.php index 8d2e9d41a3..6033237b9d 100644 --- a/phpBB/includes/acp/acp_jabber.php +++ b/phpBB/includes/acp/acp_jabber.php @@ -29,7 +29,7 @@ class acp_jabber function main($id, $mode) { - global $db, $user, $auth, $template; + global $db, $user, $auth, $template, $phpbb_log; global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx; $user->add_lang('acp/board'); @@ -111,7 +111,7 @@ class acp_jabber set_config('jab_package_size', $jab_package_size); set_config('jab_use_ssl', $jab_use_ssl); - add_log('admin', 'LOG_' . $log); + $phpbb_log->add('admin', $user->data['user_id'], $user->ip, 'LOG_' . $log); trigger_error($message . adm_back_link($this->u_action)); } |