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:
Diffstat (limited to 'plugins/UsersManager/API.php')
-rw-r--r--plugins/UsersManager/API.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/UsersManager/API.php b/plugins/UsersManager/API.php
index 37e249a8e2..e4356bf373 100644
--- a/plugins/UsersManager/API.php
+++ b/plugins/UsersManager/API.php
@@ -117,7 +117,7 @@ class API
/**
* Returns the list of all the users
*
- * @param string $userLogins Comma separated list of users to select. If not specified, will return all users
+ * @param string $userLogins Comma separated list of users to select. If not specified, will return all users
* @return array the list of all the users
*/
public function getUsers($userLogins = '')
@@ -508,7 +508,7 @@ class API
FROM " . Common::prefixTable("user") . "
WHERE email = ?", $userEmail);
return $count != 0
- || Config::getInstance()->superuser['email'] == $userEmail;
+ || Config::getInstance()->superuser['email'] == $userEmail;
}
/**
@@ -659,12 +659,12 @@ class API
if (is_null($idSites)) {
$db->query("DELETE FROM " . Common::prefixTable("access") .
- " WHERE login = ?",
+ " WHERE login = ?",
array($userLogin));
} else {
foreach ($idSites as $idsite) {
$db->query("DELETE FROM " . Common::prefixTable("access") .
- " WHERE idsite = ? AND login = ?",
+ " WHERE idsite = ? AND login = ?",
array($idsite, $userLogin)
);
}