diff --git a/phpBB/posting.php b/phpBB/posting.php index 516f94f323..b0aef2482a 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -372,7 +372,9 @@ switch ($mode) * NOTE: Should be actual language strings, NOT * language keys. * @var bool is_authed Does the user have the required permissions? +* @var array post_data All post data from database * @since 3.1.3-RC1 +* @changed 3.1.10-RC1 Added post_data */ $vars = array( 'post_id', @@ -388,6 +390,7 @@ $vars = array( 'mode', 'error', 'is_authed', + 'post_data', ); extract($phpbb_dispatcher->trigger_event('core.modify_posting_auth', compact($vars)));