aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-08-21 13:07:11 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-08-21 13:07:11 +0200
commit0bb4af90a4d9a1fedb254a1b6e9702726cfcf091 (patch)
tree020c9455fc81b6dae549385a6173627efdac056f /phpBB
parentbd6dfee23e0d3f11ff028d4376e73c9c1e770f2a (diff)
downloadforums-0bb4af90a4d9a1fedb254a1b6e9702726cfcf091.tar
forums-0bb4af90a4d9a1fedb254a1b6e9702726cfcf091.tar.gz
forums-0bb4af90a4d9a1fedb254a1b6e9702726cfcf091.tar.bz2
forums-0bb4af90a4d9a1fedb254a1b6e9702726cfcf091.tar.xz
forums-0bb4af90a4d9a1fedb254a1b6e9702726cfcf091.zip
[ticket/10714] Fix core.add_log event
PHPBB3-10714
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/log/log.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/log/log.php b/phpBB/includes/log/log.php
index 97d0aac623..92730aa7da 100644
--- a/phpBB/includes/log/log.php
+++ b/phpBB/includes/log/log.php
@@ -210,7 +210,7 @@ class phpbb_log implements phpbb_log_interface
if ($phpbb_dispatcher != null)
{
$vars = array('mode', 'user_id', 'log_ip', 'log_operation', 'log_time', 'additional_data', 'sql_ary');
- extract($phpbb_dispatcher->trigger_event('core.add_log', $vars, $vars));
+ extract($phpbb_dispatcher->trigger_event('core.add_log', $vars));
}
// We didn't find a log_type, so we don't save it in the database.