aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_acp.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-12 23:27:19 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-12 23:27:19 +0200
commit6c0fd61b1df5e3c1245aa4a8d3c7e991de7a2dbf (patch)
treeadb4d2d0bc9db51b698e3f5063a1a175b635e576 /phpBB/includes/functions_acp.php
parentceef85ee0e4e425b5f1a79a378506752d46cef02 (diff)
downloadforums-6c0fd61b1df5e3c1245aa4a8d3c7e991de7a2dbf.tar
forums-6c0fd61b1df5e3c1245aa4a8d3c7e991de7a2dbf.tar.gz
forums-6c0fd61b1df5e3c1245aa4a8d3c7e991de7a2dbf.tar.bz2
forums-6c0fd61b1df5e3c1245aa4a8d3c7e991de7a2dbf.tar.xz
forums-6c0fd61b1df5e3c1245aa4a8d3c7e991de7a2dbf.zip
[ticket/12687] Remove globals
PHPBB3-12687
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r--phpBB/includes/functions_acp.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index 037749f7e9..8453da6e6e 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -146,10 +146,10 @@ function adm_page_footer($copyright_html = true)
return;
}
- phpbb_check_and_display_sql_report();
+ phpbb_check_and_display_sql_report($request, $auth, $db);
$template->assign_vars(array(
- 'DEBUG_OUTPUT' => phpbb_generate_debug_output(),
+ 'DEBUG_OUTPUT' => phpbb_generate_debug_output($db, $config, $auth, $user),
'TRANSLATION_INFO' => (!empty($user->lang['TRANSLATION_INFO'])) ? $user->lang['TRANSLATION_INFO'] : '',
'S_COPYRIGHT_HTML' => $copyright_html,
'CREDIT_LINE' => $user->lang('POWERED_BY', '<a href="https://www.phpbb.com/">phpBB</a>&reg; Forum Software &copy; phpBB Limited'),