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@google.com>2008-08-16 22:30:36 +0400
committerjohmathe <johmathe@google.com>2008-08-16 22:30:36 +0400
commitb8f9c7112372215db79cf3d127407044ee2607af (patch)
tree826c28b786b96ef5c24494bd63557df747d2c850 /plugins/DBStats/API.php
parent4f4ac903acfa597fc16ac947ea14bc491840f667 (diff)
Corrects a display bug in the index size in the DBStats plugin.
git-svn-id: http://dev.piwik.org/svn/trunk@609 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/DBStats/API.php')
-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;
}