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:
authormattab <matthieu.aubry@gmail.com>2013-07-31 02:47:37 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-31 02:47:37 +0400
commit84a6fa7da882aae8717298f5e7ca1bdbd9c337ff (patch)
treebf15c1f281240d09f943449e25fac9f64890249d /plugins/Actions/Controller.php
parentae66dd9ddade00aba21839c07d6d167c2fd85be6 (diff)
Fixing post merge bugs
Diffstat (limited to 'plugins/Actions/Controller.php')
-rw-r--r--plugins/Actions/Controller.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/plugins/Actions/Controller.php b/plugins/Actions/Controller.php
index 36002fe2de..9ce7800197 100644
--- a/plugins/Actions/Controller.php
+++ b/plugins/Actions/Controller.php
@@ -87,66 +87,66 @@ class Piwik_Actions_Controller extends Controller
public function getPageUrls($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getEntryPageUrls($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getExitPageUrls($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getSiteSearchKeywords($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getSiteSearchNoResultKeywords($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getSiteSearchCategories($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getPageUrlsFollowingSiteSearch($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getPageTitlesFollowingSiteSearch($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getPageTitles($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getEntryPageTitles($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getExitPageTitles($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getDownloads($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getOutlinks($fetch = false)
{
- return ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
}