X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-cache_stats.php;h=cfcd33e1f1ae477ae6e59a8e5bea3ce166f1521b;hb=98b92ea5ba992a63304091fa1b57f477befffc22;hp=ba73224b8f866777fda00f5b92f48e631261316e;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa;p=mailer.git diff --git a/inc/modules/admin/what-cache_stats.php b/inc/modules/admin/what-cache_stats.php index ba73224b8f..cfcd33e1f1 100644 --- a/inc/modules/admin/what-cache_stats.php +++ b/inc/modules/admin/what-cache_stats.php @@ -46,21 +46,18 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addMenuDescription('admin', __FILE__); // Activated? -if (getConfig('STATS_ENABLED') == 'Y') { - // Calculate total hits - $totalHits = (getStatsEntry('db_hits') + getStatsEntry('cache_hits')); - +if (ifStatsAreEnabled()) { // Prepare data for the template - $content['db_hits'] = translateComma(getStatsEntry('db_hits')); - $content['cache_hits'] = translateComma(getStatsEntry('cache_hits')); - $content['total_hits'] = translateComma($totalHits); - $content['cache_perc'] = translateComma((getStatsEntry('cache_hits') / $totalHits * 100)); + $content['db_hits'] = getStatsEntry('db_hits'); + $content['cache_hits'] = getStatsEntry('cache_hits'); + $content['total_hits'] = (getStatsEntry('db_hits') + getStatsEntry('cache_hits')); + $content['cache_perc'] = (getStatsEntry('cache_hits') / $content['total_hits'] * 100); // Load template loadTemplate('admin_cache_stats', false, $content); } else { // Deactivated, which is good for performance - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_CACHE_DB_STATS_DEACTIVATED')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_CACHE_DB_STATS_DEACTIVATED--}'); } // [EOF]