1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-30 19:24:13 +02:00

[feature/events] Add core.acp_foruns_add_forum_data ledge

PHPBB3-9550
This commit is contained in:
Michael Cullum 2012-03-15 21:06:44 +00:00 committed by Joas Schilling
parent 54caef8f90
commit eb7a04d324

View File

@ -220,6 +220,11 @@ class acp_forums
}
trigger_error($message . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id));
$vars = array('forum_data');
$event = new phpbb_event_data(compact($vars));
$phpbb_dispatcher->dispatch('core.acp_forums_add_forum_data', $event);
extract($event->get_data_filtered($vars));
}
break;