mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12687] Remove french spaces
PHPBB3-12687
This commit is contained in:
parent
bbc63456f9
commit
8e9b27314b
1 changed files with 3 additions and 3 deletions
|
@ -5063,7 +5063,7 @@ function phpbb_generate_debug_output(phpbb\db\driver\driver_interface $db, \phpb
|
||||||
if (isset($GLOBALS['starttime']))
|
if (isset($GLOBALS['starttime']))
|
||||||
{
|
{
|
||||||
$totaltime = microtime(true) - $GLOBALS['starttime'];
|
$totaltime = microtime(true) - $GLOBALS['starttime'];
|
||||||
$debug_info[] = sprintf('Time : %.3fs', $totaltime);
|
$debug_info[] = sprintf('Time: %.3fs', $totaltime);
|
||||||
}
|
}
|
||||||
|
|
||||||
$debug_info[] = $db->sql_num_queries() . ' Queries (' . $db->sql_num_queries(true) . ' cached)';
|
$debug_info[] = $db->sql_num_queries() . ' Queries (' . $db->sql_num_queries(true) . ' cached)';
|
||||||
|
@ -5079,11 +5079,11 @@ function phpbb_generate_debug_output(phpbb\db\driver\driver_interface $db, \phpb
|
||||||
|
|
||||||
if (defined('DEBUG'))
|
if (defined('DEBUG'))
|
||||||
{
|
{
|
||||||
$debug_info[] = 'GZIP : ' . (($config['gzip_compress'] && @extension_loaded('zlib')) ? 'On' : 'Off');
|
$debug_info[] = 'GZIP: ' . (($config['gzip_compress'] && @extension_loaded('zlib')) ? 'On' : 'Off');
|
||||||
|
|
||||||
if ($user->load)
|
if ($user->load)
|
||||||
{
|
{
|
||||||
$debug_info[] = 'Load : ' . $user->load;
|
$debug_info[] = 'Load: ' . $user->load;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($auth->acl_get('a_'))
|
if ($auth->acl_get('a_'))
|
||||||
|
|
Loading…
Add table
Reference in a new issue