aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2008-09-24 19:08:14 +0000
committerChris Smith <toonarmy@phpbb.com>2008-09-24 19:08:14 +0000
commita75fd80305c50115ceb40af5da37938ee05f2135 (patch)
treeae6a1acbac141b62f6d98fd98aa31a50d92211f7 /phpBB
parent0cd7d50fb99338ea66888be62b20e0b51517e9f7 (diff)
downloadforums-a75fd80305c50115ceb40af5da37938ee05f2135.tar
forums-a75fd80305c50115ceb40af5da37938ee05f2135.tar.gz
forums-a75fd80305c50115ceb40af5da37938ee05f2135.tar.bz2
forums-a75fd80305c50115ceb40af5da37938ee05f2135.tar.xz
forums-a75fd80305c50115ceb40af5da37938ee05f2135.zip
A fix for the fix in r8934. #34525
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8936 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/ucp/ucp_pm_compose.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php
index 69ff8a1c2a..1418d386e8 100644
--- a/phpBB/includes/ucp/ucp_pm_compose.php
+++ b/phpBB/includes/ucp/ucp_pm_compose.php
@@ -25,6 +25,10 @@ function compose_pm($id, $mode, $action)
global $template, $db, $auth, $user;
global $phpbb_root_path, $phpEx, $config;
+ // Damn php and globals - i know, this is horrible
+ // Needed for handle_message_list_actions()
+ global $refresh, $submit, $preview;
+
include($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
include($phpbb_root_path . 'includes/message_parser.' . $phpEx);