diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-07-17 16:08:31 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-07-17 16:08:31 +0200 |
commit | 24625d3afc83f7b715fa6e15b4bd072cf843a72c (patch) | |
tree | a2de31b14b0b357412f2acbf44c804b1f08ccd50 /phpBB/posting.php | |
parent | 12f85a6a89fc15011a17060b1bc0aa1098a246c6 (diff) | |
parent | 4262dfeaef46fe40db4f7d830c9b3d0853ee1778 (diff) | |
download | forums-24625d3afc83f7b715fa6e15b4bd072cf843a72c.tar forums-24625d3afc83f7b715fa6e15b4bd072cf843a72c.tar.gz forums-24625d3afc83f7b715fa6e15b4bd072cf843a72c.tar.bz2 forums-24625d3afc83f7b715fa6e15b4bd072cf843a72c.tar.xz forums-24625d3afc83f7b715fa6e15b4bd072cf843a72c.zip |
Merge branch '3.1.x'
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 eafae332c6..7f89bdbadf 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1866,6 +1866,7 @@ if (($mode == 'post' || ($mode == 'edit' && $post_id == $post_data['topic_first_ * @var int post_id ID of the post * @var int topic_id ID of the topic * @var int forum_id ID of the forum +* @var int draft_id ID of the draft * @var bool submit Whether or not the form has been submitted * @var bool preview Whether or not the post is being previewed * @var bool save Whether or not a draft is being saved @@ -1888,6 +1889,7 @@ if (($mode == 'post' || ($mode == 'edit' && $post_id == $post_data['topic_first_ * delete, cancel, refresh, error, page_data, message_parser * @change 3.1.2-RC1 Removed 'delete' var as it does not exist * @change 3.1.5-RC1 Added poll variables to the page_data array +* @change 3.1.6-RC1 Added 'draft_id' var */ $vars = array( 'post_data', @@ -1901,6 +1903,7 @@ $vars = array( 'post_id', 'topic_id', 'forum_id', + 'draft_id', 'submit', 'preview', 'save', |