diff options
author | brunoais <brunoaiss@gmail.com> | 2014-07-20 09:19:23 +0100 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2014-07-20 09:19:23 +0100 |
commit | acaa1fe59c638f327f7e5a8d18d847e1e10a1c3f (patch) | |
tree | 2cdb05a7b29d7178fbaa4b9753f5ee35abbd4610 /phpBB/includes/functions_posting.php | |
parent | 4629ebfc4ff95c61069c271e7b77102a77b7a761 (diff) | |
download | forums-acaa1fe59c638f327f7e5a8d18d847e1e10a1c3f.tar forums-acaa1fe59c638f327f7e5a8d18d847e1e10a1c3f.tar.gz forums-acaa1fe59c638f327f7e5a8d18d847e1e10a1c3f.tar.bz2 forums-acaa1fe59c638f327f7e5a8d18d847e1e10a1c3f.tar.xz forums-acaa1fe59c638f327f7e5a8d18d847e1e10a1c3f.zip |
[ticket/12801] missing $phpbb_dispatcher as a global
PHPBB3-12801
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-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 913071ec4f..b4db785c61 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -893,7 +893,7 @@ function posting_gen_attachment_entry($attachment_data, &$filename_data, $show_a function load_drafts($topic_id = 0, $forum_id = 0, $id = 0, $pm_action = '', $msg_id = 0) { global $user, $db, $template, $auth; - global $phpbb_root_path, $phpEx; + global $phpbb_root_path, $phpbb_dispatcher, $phpEx; $topic_ids = $forum_ids = $draft_rows = array(); |