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:
authorThomas Steur <tsteur@users.noreply.github.com>2016-08-31 01:42:59 +0300
committerThomas Steur <thomas.steur@gmail.com>2016-08-31 16:10:56 +0300
commit73c06026a39a8ba62f83f7082e744480bcc6b86e (patch)
tree5d73cb67c8b1cc584cf28d3bfd31e7cc68b7a6dd /plugins/Transitions
parentd036bacec1f9b121c9d4f9e5b98ea224ed4dfae0 (diff)
Apply default filter_limit to all API calls (#10009)
* fix #8458 Apply default filter_limit to all API calls * return all results where needed instead of default filter limit of 100 * make sure to apply offset * fix unit tests * fix import logs test as they post the filter value
Diffstat (limited to 'plugins/Transitions')
-rw-r--r--plugins/Transitions/javascripts/transitions.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Transitions/javascripts/transitions.js b/plugins/Transitions/javascripts/transitions.js
index 0da9580cf0..789cee2915 100644
--- a/plugins/Transitions/javascripts/transitions.js
+++ b/plugins/Transitions/javascripts/transitions.js
@@ -1477,6 +1477,7 @@ Piwik_Transitions_Ajax.prototype.callApi = function (method, params, callback) {
params.format = 'JSON';
params.module = 'API';
params.method = method;
+ params.filter_limit = '-1';
var ajaxRequest = new ajaxHelper();
ajaxRequest.addParams(params, 'get');