1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-19 22:10:14 +02:00

[ticket/10714] Change $phpbb_dispatcher calls to the new layout

PHPBB3-10714
This commit is contained in:
Joas Schilling 2012-03-24 17:13:17 +01:00
parent 1e00c697b7
commit 2c7f498c1b

View File

@ -3407,9 +3407,7 @@ function add_log()
if ($phpbb_dispatcher != null)
{
$vars = array('mode', 'args', 'additional_data');
$event = new phpbb_event_data(compact($vars));
$phpbb_dispatcher->dispatch('core.function_add_log', $event);
extract($event->get_data_filtered($vars));
extract($phpbb_dispatcher->trigger_event('core.function_add_log', $vars, $vars));
}
*/
}