diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-09-05 11:45:36 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-09-06 16:07:25 +0200 |
commit | d33fabd02d5c58fcd226e922de1285c2f9773742 (patch) | |
tree | caad2c0025998a6aefa1e12d45eddfa66e487934 /lib/public | |
parent | b2dde14dbc62f7b977c66401aaf6ca2e514b92f2 (diff) | |
download | nextcloud-server-d33fabd02d5c58fcd226e922de1285c2f9773742.tar.gz nextcloud-server-d33fabd02d5c58fcd226e922de1285c2f9773742.zip |
remove error logs
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/share.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/share.php b/lib/public/share.php index 06d67ab4e0a..f8a6e0313ad 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -134,7 +134,7 @@ class Share { * not '/admin/data/file.txt' */ public static function getUsersSharingFile($path, $user, $includeOwner = false) { - error_log("getuser sharing files for: " . $path . " and " . $user); + $shares = array(); $publicShare = false; $source = -1; @@ -152,7 +152,7 @@ class Share { error_log("source: " . $meta['fileid']); $source = $meta['fileid']; $cache = new \OC\Files\Cache\Cache($meta['storage']); - } else error_log("no source"); + } while ($source !== -1) { |