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:
authorvipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2010-02-10 11:26:40 +0300
committervipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2010-02-10 11:26:40 +0300
commit8dace409b0895d3320f389b978820bb722b60630 (patch)
tree735823c771d700211976db19db5b0141b243a779 /plugins/DBStats
parente6d09093dbb197dbfd51e9803d5ee4a64372cac5 (diff)
refs #1122 - fix usage
Diffstat (limited to 'plugins/DBStats')
-rw-r--r--plugins/DBStats/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DBStats/Controller.php b/plugins/DBStats/Controller.php
index 4896519e6e..a10151789a 100644
--- a/plugins/DBStats/Controller.php
+++ b/plugins/DBStats/Controller.php
@@ -19,7 +19,7 @@ class Piwik_DBStats_Controller extends Piwik_Controller
function index()
{
$view = Piwik_View::factory('DBStats');
- $view->tablesStatus = Piwik_DBStats_API::getAllTablesStatus();
+ $view->tablesStatus = Piwik_DBStats_API::getInstance()->getAllTablesStatus();
$this->setGeneralVariablesView($view);
$view->menu = Piwik_GetAdminMenu();
echo $view->render();