aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_acp.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-12 14:33:00 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-12 14:33:00 +0200
commitceef85ee0e4e425b5f1a79a378506752d46cef02 (patch)
tree1b7a6780873639e9ce2114322fd868f348510e59 /phpBB/includes/functions_acp.php
parent06e6c915134d11db906d0275c2a75a6280a07ab6 (diff)
downloadforums-ceef85ee0e4e425b5f1a79a378506752d46cef02.tar
forums-ceef85ee0e4e425b5f1a79a378506752d46cef02.tar.gz
forums-ceef85ee0e4e425b5f1a79a378506752d46cef02.tar.bz2
forums-ceef85ee0e4e425b5f1a79a378506752d46cef02.tar.xz
forums-ceef85ee0e4e425b5f1a79a378506752d46cef02.zip
[ticket/12687] Return a string and move the displaying of the sql report
PHPBB3-12687
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r--phpBB/includes/functions_acp.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index 86eaf856de..037749f7e9 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -146,9 +146,10 @@ function adm_page_footer($copyright_html = true)
return;
}
- display_debug_output();
+ phpbb_check_and_display_sql_report();
$template->assign_vars(array(
+ 'DEBUG_OUTPUT' => phpbb_generate_debug_output(),
'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'),