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:
authordiosmosis <diosmosis@users.noreply.github.com>2018-09-11 02:43:25 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-09-11 02:43:25 +0300
commit5eddf49927b7c36d1170521a3dc1aae9f2717435 (patch)
tree11dee55cda342c451ebd07ada6a20fb4768504ca /plugins/Ecommerce
parentec1aabdc7fdf14cd8d0da1c3f1fe1b33c6cf16fe (diff)
Fix API request issue.
Diffstat (limited to 'plugins/Ecommerce')
-rw-r--r--plugins/Ecommerce/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Ecommerce/Controller.php b/plugins/Ecommerce/Controller.php
index 072336d0c7..093eb40409 100644
--- a/plugins/Ecommerce/Controller.php
+++ b/plugins/Ecommerce/Controller.php
@@ -77,7 +77,7 @@ class Controller extends \Piwik\Plugins\Goals\Controller
$view = new View('@Ecommerce/conversionOverview');
$idGoal = Common::getRequestVar('idGoal', null, 'string');
- $goalMetrics = Request::processRequest('Goals.get', array('idGoal' => $idGoal, 'filter_limit' => '-1'), $default = []);
+ $goalMetrics = Request::processRequest('Goals.get', array('idGoal' => $idGoal, 'filter_limit' => '-1', 'filter_offset' => '0'));
$dataRow = $goalMetrics->getFirstRow();
$view->idSite = Common::getRequestVar('idSite', null, 'int');