diff --git a/phpBB/adm/style/acp_main.html b/phpBB/adm/style/acp_main.html index 0c87ed65b4..05ccd10605 100644 --- a/phpBB/adm/style/acp_main.html +++ b/phpBB/adm/style/acp_main.html @@ -140,7 +140,6 @@ {{ PHP_VERSION_INFO }} - {% if S_TOTAL_ORPHAN %} {{ lang('NUMBER_ORPHAN') ~ lang('COLON') }} {% if TOTAL_ORPHAN > 0 %} @@ -149,8 +148,6 @@ {{ TOTAL_ORPHAN }} {% endif %} - {% else %} - {% endif %} {% if S_VERSIONCHECK %} @@ -204,10 +201,12 @@ {{ lang('FILES_PER_DAY') ~ lang('COLON') }} {{ FILES_PER_DAY }} + {% if S_VERSIONCHECK %}     + {% endif %} diff --git a/phpBB/includes/acp/acp_main.php b/phpBB/includes/acp/acp_main.php index a5dedfeebb..359e844d81 100644 --- a/phpBB/includes/acp/acp_main.php +++ b/phpBB/includes/acp/acp_main.php @@ -533,20 +533,13 @@ class acp_main $files_per_day = $total_files; } - if ($config['allow_attachments'] || $config['allow_pm_attach']) - { - $sql = 'SELECT COUNT(attach_id) AS total_orphan - FROM ' . ATTACHMENTS_TABLE . ' - WHERE is_orphan = 1 - AND filetime < ' . (time() - 3*60*60); - $result = $db->sql_query($sql); - $total_orphan = (int) $db->sql_fetchfield('total_orphan'); - $db->sql_freeresult($result); - } - else - { - $total_orphan = false; - } + $sql = 'SELECT COUNT(attach_id) AS total_orphan + FROM ' . ATTACHMENTS_TABLE . ' + WHERE is_orphan = 1 + AND filetime < ' . (time() - 3*60*60); + $result = $db->sql_query($sql); + $total_orphan = (int) $db->sql_fetchfield('total_orphan'); + $db->sql_freeresult($result); $dbsize = get_database_size(); @@ -564,7 +557,6 @@ class acp_main 'DBSIZE' => $dbsize, 'UPLOAD_DIR_SIZE' => $upload_dir_size, 'TOTAL_ORPHAN' => $total_orphan, - 'S_TOTAL_ORPHAN' => ($total_orphan === false) ? false : true, 'GZIP_COMPRESSION' => ($config['gzip_compress'] && @extension_loaded('zlib')) ? $user->lang['ON'] : $user->lang['OFF'], 'DATABASE_INFO' => $db->sql_server_info(), 'PHP_VERSION_INFO' => PHP_VERSION,