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

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-10-08 01:04:12 +0300
committerbrantje <brantje@gmail.com>2016-10-08 01:04:12 +0300
commit41360eed89042de107f2b2719511e794ee5a9532 (patch)
tree0f20defbe424dfaf70876f748903ebbdceb12cde /lib
parent1abe75c9595f340d6d7ba9ec9076ddae49f2c905 (diff)
Fix travis errors in SharingMapper
Diffstat (limited to 'lib')
-rw-r--r--lib/Db/SharingACLMapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Db/SharingACLMapper.php b/lib/Db/SharingACLMapper.php
index c1ed043e..cace3cfa 100644
--- a/lib/Db/SharingACLMapper.php
+++ b/lib/Db/SharingACLMapper.php
@@ -59,7 +59,7 @@ class SharingACLMapper extends Mapper {
public function getItemACL($user_id, $item_guid) {
$q = "SELECT * FROM " . self::TABLE_NAME . " WHERE item_guid = ? AND ";
$filter = [$item_guid];
- if ($user_id == null){
+ if ($user_id === null){
$q .= 'user_id is null';
}
else {