diff options
author | Michael Cullum <unknownbliss@phpbbdevelopers.net> | 2012-03-15 21:06:44 +0000 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-01 10:18:38 +0200 |
commit | eb7a04d32427d2070befdd10fcec657222bc8fa8 (patch) | |
tree | 150b83ac970ee5a21a7f8ff4be08085b31f0b6fd /phpBB/includes/acp/acp_forums.php | |
parent | 54caef8f902cf5ea40da0d818b770d15b6d7e7e2 (diff) | |
download | forums-eb7a04d32427d2070befdd10fcec657222bc8fa8.tar forums-eb7a04d32427d2070befdd10fcec657222bc8fa8.tar.gz forums-eb7a04d32427d2070befdd10fcec657222bc8fa8.tar.bz2 forums-eb7a04d32427d2070befdd10fcec657222bc8fa8.tar.xz forums-eb7a04d32427d2070befdd10fcec657222bc8fa8.zip |
[feature/events] Add core.acp_foruns_add_forum_data ledge
PHPBB3-9550
Diffstat (limited to 'phpBB/includes/acp/acp_forums.php')
-rw-r--r-- | phpBB/includes/acp/acp_forums.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_forums.php b/phpBB/includes/acp/acp_forums.php index 3a3b2021eb..f4d0a93b8d 100644 --- a/phpBB/includes/acp/acp_forums.php +++ b/phpBB/includes/acp/acp_forums.php @@ -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; |