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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-07-13 06:18:28 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-07-13 06:18:28 +0400
commit91208f5be6fab950ec6a302292be3a32636945b2 (patch)
tree5275da3913f2b841c81c09440df5132443dc206c /plugins
parent349f28088cac598b3c9a8e5686fefbd9aaef8cc4 (diff)
Refactored ViewDataTable::getRequestString to return an array so building a URL is not necessary. Also changed request_string_suffix view property to request_parameters_to_modify.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Goals/Goals.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Goals/Goals.php b/plugins/Goals/Goals.php
index be0eb1f225..100c776153 100644
--- a/plugins/Goals/Goals.php
+++ b/plugins/Goals/Goals.php
@@ -605,7 +605,7 @@ class Piwik_Goals extends Piwik_Plugin
unset($columns['orders']);
unset($columns['conversion_rate']);
- $result['request_string_suffix'] = '&abandonedCarts=1';
+ $result['request_parameters_to_modify'] = array('abandonedCarts' => '1');
}
$result['translations'] = array_merge(array('label' => $label), $columns);