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/Annotations
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/Annotations')
-rwxr-xr-xplugins/Annotations/javascripts/annotations.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/Annotations/javascripts/annotations.js b/plugins/Annotations/javascripts/annotations.js
index f699b3aec9..b6d08e9856 100755
--- a/plugins/Annotations/javascripts/annotations.js
+++ b/plugins/Annotations/javascripts/annotations.js
@@ -17,7 +17,8 @@
action: 'getAnnotationManager',
idSite: idSite,
date: date,
- period: period
+ period: period,
+ filter_limit: '-1'
};
if (lastN) {
ajaxParams.lastN = lastN;
@@ -102,7 +103,8 @@
action: 'getEvolutionIcons',
idSite: idSite,
date: date,
- period: period
+ period: period,
+ filter_limit: '-1'
};
if (lastN) {
ajaxParams.lastN = lastN;