aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-09-24 09:56:30 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-09-24 09:56:30 +0200
commit4db52518a901ffcd31957d81c245152d1123fdd8 (patch)
tree82eb3a486cd48a5fbd24835e2462add5084c8406 /phpBB/posting.php
parent73d150db80521f95965a51683bb5744855f26131 (diff)
parent3910387ee54c81ed0af9518b15d4c0672a7a21ba (diff)
downloadforums-4db52518a901ffcd31957d81c245152d1123fdd8.tar
forums-4db52518a901ffcd31957d81c245152d1123fdd8.tar.gz
forums-4db52518a901ffcd31957d81c245152d1123fdd8.tar.bz2
forums-4db52518a901ffcd31957d81c245152d1123fdd8.tar.xz
forums-4db52518a901ffcd31957d81c245152d1123fdd8.zip
Merge branch '3.1.x' into 3.2.x
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php3
1 files changed, 3 insertions, 0 deletions
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)));