diff --git a/lib/ShareStatistics.php b/lib/ShareStatistics.php index 2244c2d1..c1be78bd 100644 --- a/lib/ShareStatistics.php +++ b/lib/ShareStatistics.php @@ -90,17 +90,17 @@ protected function countEntries($tableName) { /** * @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();