diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-08-21 13:25:26 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-21 13:25:26 +0200 |
commit | 151346c6e053e925b5cfcf2845eca532509bbc80 (patch) | |
tree | e960c7a9748529086fceac527dd2f5d83dd384b5 /phpBB/includes | |
parent | 701052481542cad1ab46fb5e48cf5bbd139030b8 (diff) | |
download | forums-151346c6e053e925b5cfcf2845eca532509bbc80.tar forums-151346c6e053e925b5cfcf2845eca532509bbc80.tar.gz forums-151346c6e053e925b5cfcf2845eca532509bbc80.tar.bz2 forums-151346c6e053e925b5cfcf2845eca532509bbc80.tar.xz forums-151346c6e053e925b5cfcf2845eca532509bbc80.zip |
[ticket/10714] Remove event core.function_add_log, add_log should be used instead
PHPBB3-10714
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index c5a1543277..b5d0c4d62f 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3398,18 +3398,6 @@ function add_log() case 'user': $additional_data['reportee_id'] = array_shift($args); break; - default: - /** - * @todo: enable when events are merged - * - global $phpbb_dispatcher; - - if ($phpbb_dispatcher != null) - { - $vars = array('mode', 'args', 'additional_data'); - extract($phpbb_dispatcher->trigger_event('core.function_add_log', $vars, $vars)); - } - */ } $log_operation = array_shift($args); $additional_data = array_merge($additional_data, $args); |