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-03-26 04:38:45 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-03-26 04:38:45 +0300
commit5f01e995b241d489167563d4582a205a0e0910f1 (patch)
treed69bf0c2126968de923893817b8c1f97c2e34605 /plugins/Referers/Controller.php
parentf592351eb37ad8391264928b036d0d49d60a7cf4 (diff)
- refs #33 work in progress soon finished
- updated OFC lib and added link to stats on EVOLUTION GRAPH - changed api of Piwik_ViewDataTable::factory
Diffstat (limited to 'plugins/Referers/Controller.php')
-rw-r--r--plugins/Referers/Controller.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Referers/Controller.php b/plugins/Referers/Controller.php
index 958372d4ed..d04fd8d849 100644
--- a/plugins/Referers/Controller.php
+++ b/plugins/Referers/Controller.php
@@ -57,7 +57,7 @@ class Piwik_Referers_Controller extends Piwik_Controller
*/
function getRefererType( $fetch = false)
{
- $view = Piwik_ViewDataTable::factory(null, 'cloud');
+ $view = Piwik_ViewDataTable::factory('cloud');
$view->init( $this->pluginName,
'getRefererType',
'Referers.getRefererType'
@@ -81,6 +81,7 @@ class Piwik_Referers_Controller extends Piwik_Controller
'getSearchEnginesFromKeywordId'
);
$view->disableExcludeLowPopulation();
+
$view->setColumnsToDisplay( array('label','nb_visits') );
return $this->renderView($view, $fetch);