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:
authormattpiwik <matthieu.aubry@gmail.com>2010-07-21 12:00:17 +0400
committermattpiwik <matthieu.aubry@gmail.com>2010-07-21 12:00:17 +0400
commit9ae233a5ddbd707606224edafe0c48298afe8623 (patch)
treefbcf7926cc1ac1c0b53677b27100774e3cad9b07 /plugins/DBStats/Controller.php
parentd2f47cf3b52cec8743992e3ace5fcee48691b49f (diff)
Fixes #1481
Admin UI pages were requiring period,date throwing an exception when not set properly as was the case after plugin disable. Made these screens not set date/period as calendar is never shown. Refs #1490 * Fixing loading... message for feedback form * Fixing style of inline help and yellow boxes in admin screens * Adding API to plugins not to display/disable git-svn-id: http://dev.piwik.org/svn/trunk@2604 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/DBStats/Controller.php')
-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 dca55f0fe1..4d19ade2e2 100644
--- a/plugins/DBStats/Controller.php
+++ b/plugins/DBStats/Controller.php
@@ -21,7 +21,7 @@ class Piwik_DBStats_Controller extends Piwik_Controller
Piwik::checkUserIsSuperUser();
$view = Piwik_View::factory('DBStats');
$view->tablesStatus = Piwik_DBStats_API::getInstance()->getAllTablesStatus();
- $this->setGeneralVariablesView($view);
+ $this->setBasicVariablesView($view);
$view->menu = Piwik_GetAdminMenu();
echo $view->render();
}