]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-cache_stats.php
Deprecated variables for templates removed, mor EL-rewrites, getMessage() rewritten:
[mailer.git] / inc / modules / admin / what-cache_stats.php
index ba73224b8f866777fda00f5b92f48e631261316e..aafc8a74846f01398577e9fa69e6ca4cbdc6d4ca 100644 (file)
@@ -47,20 +47,17 @@ addMenuDescription('admin', __FILE__);
 
 // Activated?
 if (getConfig('STATS_ENABLED') == 'Y') {
 
 // Activated?
 if (getConfig('STATS_ENABLED') == 'Y') {
-       // Calculate total hits
-       $totalHits = (getStatsEntry('db_hits') + getStatsEntry('cache_hits'));
-
        // Prepare data for the template
        // 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
 
        // 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]
 }
 
 // [EOF]