diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-12-08 21:43:06 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-12-08 21:43:06 +0100 |
commit | d5742d7ec1efd800ebd420ab13bf9523ac7a5f3f (patch) | |
tree | 4cdf284836c763f65ac876a4ec87367e50439c44 /phpBB | |
parent | b5bfe7b3caad828598102f3b76482c32c2bb7bab (diff) | |
parent | 6b081433c5ffc68ae8e46fadce0bc565e736437f (diff) | |
download | forums-d5742d7ec1efd800ebd420ab13bf9523ac7a5f3f.tar forums-d5742d7ec1efd800ebd420ab13bf9523ac7a5f3f.tar.gz forums-d5742d7ec1efd800ebd420ab13bf9523ac7a5f3f.tar.bz2 forums-d5742d7ec1efd800ebd420ab13bf9523ac7a5f3f.tar.xz forums-d5742d7ec1efd800ebd420ab13bf9523ac7a5f3f.zip |
Merge remote-tracking branch 'imkingdavid/ticket/12069' into develop
* imkingdavid/ticket/12069:
[ticket/12069] Globalize in submit_post()
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 1c4fe1ca70..172f4403ac 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1473,7 +1473,7 @@ function delete_post($forum_id, $topic_id, $post_id, &$data, $is_soft = false, $ */ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $update_message = true, $update_search_index = true) { - global $db, $auth, $user, $config, $phpEx, $template, $phpbb_root_path, $phpbb_container; + global $db, $auth, $user, $config, $phpEx, $template, $phpbb_root_path, $phpbb_container, $phpbb_dispatcher; // We do not handle erasing posts here if ($mode == 'delete') |