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:
authorMatthieu Aubry <mattab@users.noreply.github.com>2020-02-10 04:39:06 +0300
committerGitHub <noreply@github.com>2020-02-10 04:39:06 +0300
commit300343a0d92b8a9e9b23727fa4dee2721df824e9 (patch)
treef1f48df20862ee43030b0e3925e7b042ef6abfce /plugins/Dashboard
parente2c454c3d899edeabe731f82d1830fc367167d7c (diff)
fixes copy dashboard to user for more than 100 users (#15538)
cherry picking #15424 to fix #15420 in 3.x-dev
Diffstat (limited to 'plugins/Dashboard')
-rw-r--r--plugins/Dashboard/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dashboard/API.php b/plugins/Dashboard/API.php
index 5367760f2f..fb2b541621 100644
--- a/plugins/Dashboard/API.php
+++ b/plugins/Dashboard/API.php
@@ -116,7 +116,7 @@ class API extends \Piwik\Plugin\API
Piwik::checkUserHasSomeAdminAccess();
// get users only returns users of sites the current user has at least admin access to
- $users = Request::processRequest('UsersManager.getUsers');
+ $users = Request::processRequest('UsersManager.getUsers', ['filter_limit' => -1]);
$userFound = false;
foreach ($users as $user) {
if ($user['login'] === $copyToUser) {