Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohmathe <johmathe@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-08-16 22:30:36 +0400
committerjohmathe <johmathe@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-08-16 22:30:36 +0400
commit206944a3411f16c7002a6ebaed4e4994c2d478a0 (patch)
tree826c28b786b96ef5c24494bd63557df747d2c850 /plugins/DBStats
parent99e6f7187b6e85e15583d7e4383e377cc53a89cf (diff)
Corrects a display bug in the index size in the DBStats plugin.
Diffstat (limited to 'plugins/DBStats')
-rw-r--r--plugins/DBStats/API.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/DBStats/API.php b/plugins/DBStats/API.php
index d65f826ef4..562d620da9 100644
--- a/plugins/DBStats/API.php
+++ b/plugins/DBStats/API.php
@@ -84,7 +84,6 @@ class Piwik_DBStats_API extends Piwik_Apiable
$t = self::getTableStatus($table);
$t['Data_length'] = self::get_size($t['Data_length']);
$t['Index_length'] = self::get_size($t['Index_length']);
- $t['Index_length'] = self::get_size($t['Index_length']);
$t['Rows'] = self::get_size($t['Rows']);
$tables[] = $t;
}