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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-12-26 16:50:57 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-12-26 16:50:57 +0300
commit446fd843abd0640403c30a763493a8fb1d821160 (patch)
tree65ebec570ef05ae3f3d84e14a3e4cd7ab6b128ea /core/ViewDataTable.php
parent35d668736cc7596e9f48ac050ce685a45296cbb6 (diff)
- cacheFile is now creating the directory if not already created
- adding log_conversion table, and goal table in 0.2.27 - adding case sensitive/case insensitive matching - when goal plugin is disabled, conversions are not being recorded - adding release notes in the Goal tab to let users know that this is alpha release
Diffstat (limited to 'core/ViewDataTable.php')
-rw-r--r--core/ViewDataTable.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/ViewDataTable.php b/core/ViewDataTable.php
index cc767a1337..e13f6b3d71 100644
--- a/core/ViewDataTable.php
+++ b/core/ViewDataTable.php
@@ -662,7 +662,10 @@ abstract class Piwik_ViewDataTable
*/
public function enableShowGoals()
{
- $this->viewProperties['show_goals'] = true;
+ if(Piwik_PluginsManager::getInstance()->isPluginActivated('Goals'))
+ {
+ $this->viewProperties['show_goals'] = true;
+ }
}
/**