]> source.dussan.org Git - nextcloud-server.git/commitdiff
make sure that we only find file/folder shares
authorBjoern Schiessle <schiessle@owncloud.com>
Wed, 9 Oct 2013 15:25:58 +0000 (17:25 +0200)
committerBjoern Schiessle <schiessle@owncloud.com>
Wed, 9 Oct 2013 15:25:58 +0000 (17:25 +0200)
lib/public/share.php

index e6a74117aa21b012cf9cb6ca33b6a388c30eb2ec..66605dafee50af99a5204717ccd5d13e3dbf5c47 100644 (file)
@@ -155,13 +155,13 @@ class Share {
 
                while ($source !== -1) {
 
-                       // Fetch all shares of this file path from DB
+                       // Fetch all shares with another user
                        $query = \OC_DB::prepare(
                                'SELECT `share_with`
                                FROM
                                `*PREFIX*share`
                                WHERE
-                               `item_source` = ? AND `share_type` = ?'
+                               `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')'
                        );
 
                        $result = $query->execute(array($source, self::SHARE_TYPE_USER));
@@ -180,7 +180,7 @@ class Share {
                                FROM
                                `*PREFIX*share`
                                WHERE
-                               `item_source` = ? AND `share_type` = ?'
+                               `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')'
                        );
 
                        $result = $query->execute(array($source, self::SHARE_TYPE_GROUP));
@@ -201,7 +201,7 @@ class Share {
                                        FROM
                                        `*PREFIX*share`
                                        WHERE
-                                       `item_source` = ? AND `share_type` = ?'
+                                       `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')'
                                );
 
                                $result = $query->execute(array($source, self::SHARE_TYPE_LINK));