aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-09-24 09:56:25 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-09-24 09:56:25 +0200
commit3910387ee54c81ed0af9518b15d4c0672a7a21ba (patch)
treeaae09dc43117a86df9bd3e3fb9e9b47a30ddb252 /phpBB
parentd2f95ef875d394623f5bb656f530f04b42e9aef6 (diff)
parent64178b40b80c2991197a73cd0b7f6cf6cbd5bf9c (diff)
downloadforums-3910387ee54c81ed0af9518b15d4c0672a7a21ba.tar
forums-3910387ee54c81ed0af9518b15d4c0672a7a21ba.tar.gz
forums-3910387ee54c81ed0af9518b15d4c0672a7a21ba.tar.bz2
forums-3910387ee54c81ed0af9518b15d4c0672a7a21ba.tar.xz
forums-3910387ee54c81ed0af9518b15d4c0672a7a21ba.zip
Merge pull request #4433 from Senky/ticket/14747
[ticket/14747] Add post_data to core.modify_posting_auth
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/posting.php3
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)));