From 5f052ec8dced757047f9cdf40c85f9d92d698410 Mon Sep 17 00:00:00 2001 From: LaxSlash Date: Fri, 8 Jan 2016 02:17:41 -0500 Subject: [PATCH] [ticket/14395] Add event core.viewtopic_add_quickmod_option_after Added an event before the function phpbb_add_quickmod_option is called in the viewtopic.php file. The function is run before any event can be called to modify ... meaning that any modifications done to this array will not affect the options displayed to the user on the viewtopic page itself. This event serves two purposes - one, it is easier to add new quickmod options, and two, it allows an extenstion developer to check additional permissions and apply further authentication for the display of the quickmod options. PHPBB3-14395 --- phpBB/viewtopic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 02e60fb8ff..682ed91b36 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -592,7 +592,7 @@ $quickmod_array = array( * Event to modify data in the quickmod_array before it gets sent to the * phpbb_add_quickmod_option function. * -* @event core.viewtopic_add_quickmod_option_before +* @event core.viewtopic_add_quickmod_option_after * @var int forum_id Forum ID * @var int post_id Post ID * @var array quickmod_array Array with quick moderation options data