aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_email.php
diff options
context:
space:
mode:
authorRichard McGirr <rmcgirr83@gmail.com>2015-04-19 08:07:45 -0400
committerRMcGirr83 <rmcgirr83@gmail.com>2015-10-13 11:52:52 -0400
commitd003b53922624e7e923ed529726a7f89c3ef5afa (patch)
tree3bb0f33302858b63429e9dd4abc0128d1930c3c8 /phpBB/includes/acp/acp_email.php
parent1164cc38a243fb2c5b41cc8882956890ff2eecd2 (diff)
downloadforums-d003b53922624e7e923ed529726a7f89c3ef5afa.tar
forums-d003b53922624e7e923ed529726a7f89c3ef5afa.tar.gz
forums-d003b53922624e7e923ed529726a7f89c3ef5afa.tar.bz2
forums-d003b53922624e7e923ed529726a7f89c3ef5afa.tar.xz
forums-d003b53922624e7e923ed529726a7f89c3ef5afa.zip
[ticket/10572] Unguarded includes in acp files
PHPBB3-10572
Diffstat (limited to 'phpBB/includes/acp/acp_email.php')
-rw-r--r--phpBB/includes/acp/acp_email.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_email.php b/phpBB/includes/acp/acp_email.php
index fda9d50779..917d02318e 100644
--- a/phpBB/includes/acp/acp_email.php
+++ b/phpBB/includes/acp/acp_email.php
@@ -189,8 +189,15 @@ class acp_email
$db->sql_freeresult($result);
// Send the messages
- include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx);
- include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx);
+ if (!class_exists('messenger'))
+ {
+ include($phpbb_root_path . 'includes/functions_messenger.' . $phpEx);
+ }
+
+ if (!function_exists('get_group_name'))
+ {
+ include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
+ }
$messenger = new messenger($use_queue);
$errored = false;