diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-02-11 22:04:01 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-02-11 22:04:01 +0100 |
commit | 9b4d455726babf0385c84817e66477134d8afd3d (patch) | |
tree | d200fc810c632faf6cebbef237b1999f698d24e8 /phpBB | |
parent | f27cdad73e7a4af913414522d85855136bf50b31 (diff) | |
parent | b567c6e2414d069ba54f7a924c952069aa115237 (diff) | |
download | forums-9b4d455726babf0385c84817e66477134d8afd3d.tar forums-9b4d455726babf0385c84817e66477134d8afd3d.tar.gz forums-9b4d455726babf0385c84817e66477134d8afd3d.tar.bz2 forums-9b4d455726babf0385c84817e66477134d8afd3d.tar.xz forums-9b4d455726babf0385c84817e66477134d8afd3d.zip |
Merge branch '3.1.x' into 3.2.x
Diffstat (limited to 'phpBB')
-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 0ab23785ec..21783b070b 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -945,7 +945,9 @@ if ($submit || $preview || $refresh) * is posting a new topic or editing a post) * @var bool refresh Whether or not to retain previously submitted data * @var object message_parser The message parser object + * @var array error Array of errors * @since 3.1.2-RC1 + * @changed 3.1.11-RC1 Added error */ $vars = array( 'post_data', @@ -960,6 +962,7 @@ if ($submit || $preview || $refresh) 'cancel', 'refresh', 'message_parser', + 'error', ); extract($phpbb_dispatcher->trigger_event('core.posting_modify_message_text', compact($vars))); |