Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authororandev <63342732+orandev@users.noreply.github.com>2020-10-07 16:46:47 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-10-07 23:30:47 +0300
commit98fca7b99c9a1d83d48534a0eb213a9a33b36ef8 (patch)
tree266316bd527582fae386e8d1c131181d15d205f3
parent7608da6e6a860e5916d9fc5e137dfd72cd893892 (diff)
Fix num_shares_link_no_password for NC >= 15
It says in https://github.com/nextcloud/server/blob/master/apps/files_sharing/lib/Controller/ShareAPIController.php: "share_with" and "share_with_displayname" for passwords of link shares was deprecated in Nextcloud 15, use "password" instead. Signed-off-by: orandev <63342732+orandev@users.noreply.github.com>
-rw-r--r--lib/ShareStatistics.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ShareStatistics.php b/lib/ShareStatistics.php
index 2244c2d..c1be78b 100644
--- a/lib/ShareStatistics.php
+++ b/lib/ShareStatistics.php
@@ -90,17 +90,17 @@ class ShareStatistics {
/**
* @param int $type
- * @param bool $noShareWith
+ * @param bool $noPassword
* @return int
*/
- protected function countShares($type, $noShareWith = false) {
+ protected function countShares($type, $noPassword = false) {
$query = $this->connection->getQueryBuilder();
$query->selectAlias($query->createFunction('COUNT(*)'), 'num_entries')
->from('share')
->where($query->expr()->eq('share_type', $query->createNamedParameter($type)));
- if ($noShareWith) {
- $query->andWhere($query->expr()->isNull('share_with'));
+ if ($noPassword) {
+ $query->andWhere($query->expr()->isNull('password'));
}
$result = $query->execute();