]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-cache_stats.php
Fixes for auto-activation of extensions while registration phase
[mailer.git] / inc / modules / admin / what-cache_stats.php
index ba73224b8f866777fda00f5b92f48e631261316e..cfcd33e1f1ae477ae6e59a8e5bea3ce166f1521b 100644 (file)
@@ -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]