diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-10-18 21:47:36 -0400 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-10-18 21:47:36 -0400 |
commit | c6d65b051cd00828d798675e711bbea6478e5214 (patch) | |
tree | bb32aabfd2de29a32e633958cb1433af02e581e7 | |
parent | 6216771ac04f41ba815c43d188e77c85aa0806a2 (diff) | |
parent | c939f1b2c7c0d496b2a39434b7eb5da7a9749b01 (diff) | |
download | forums-c6d65b051cd00828d798675e711bbea6478e5214.tar forums-c6d65b051cd00828d798675e711bbea6478e5214.tar.gz forums-c6d65b051cd00828d798675e711bbea6478e5214.tar.bz2 forums-c6d65b051cd00828d798675e711bbea6478e5214.tar.xz forums-c6d65b051cd00828d798675e711bbea6478e5214.zip |
Merge branch 'develop-ascraeus' into develop
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 1fdc7ee9ea..af44f6270e 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -2384,6 +2384,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u * @var int topic_type Variable containing topic type value * @var array poll Array with the poll data for the post * @var array data Array with the data for the post + * @var int post_visibility Variable containing up to date post visibility * @var bool update_message Flag indicating if the post will be updated * @var bool update_search_index Flag indicating if the search index will be updated * @var string url The "Return to topic" URL @@ -2399,6 +2400,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u 'topic_type', 'poll', 'data', + 'post_visibility', 'update_message', 'update_search_index', 'url', |