diff options
author | 2016-09-02 11:41:43 +0200 | |
---|---|---|
committer | 2016-09-03 11:11:55 +0200 | |
commit | 64178b40b80c2991197a73cd0b7f6cf6cbd5bf9c (patch) | |
tree | 954e49eab7f1c8057be2788a0820e483b2ee044e /phpBB/posting.php | |
parent | Merge pull request #4377 from rxu/ticket/14703 (diff) | |
download | phpbb-64178b40b80c2991197a73cd0b7f6cf6cbd5bf9c.tar.gz phpbb-64178b40b80c2991197a73cd0b7f6cf6cbd5bf9c.tar.bz2 phpbb-64178b40b80c2991197a73cd0b7f6cf6cbd5bf9c.zip |
[ticket/14747] Add post_data to core.modify_posting_auth
PHPBB3-14747
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index f1e8452305..db580d926b 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -371,7 +371,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', @@ -387,6 +389,7 @@ $vars = array( 'mode', 'error', 'is_authed', + 'post_data', ); extract($phpbb_dispatcher->trigger_event('core.modify_posting_auth', compact($vars))); |