diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-09-06 10:58:42 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-09-06 16:07:54 +0200 |
commit | b8241aa79d732371c7436de15114f2b52afc6866 (patch) | |
tree | eec381693eee47b171fe4316331dd72aad9fb0d2 /lib/public | |
parent | edb78c917ce60a30e21d3e7eaef472cd8badf955 (diff) | |
download | nextcloud-server-b8241aa79d732371c7436de15114f2b52afc6866.tar.gz nextcloud-server-b8241aa79d732371c7436de15114f2b52afc6866.zip |
remove some more debug output
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/share.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/public/share.php b/lib/public/share.php index 8e0ab3ff4b7..9ab956d84b9 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -170,7 +170,6 @@ class Share { \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); } else { while ($row = $result->fetchRow()) { - error_log("add user: " . $row['share_with']); $shares[] = $row['share_with']; } } @@ -190,7 +189,6 @@ class Share { \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); } else { while ($row = $result->fetchRow()) { - error_log("group found: " . $row['share_with']); $usersInGroup = \OC_Group::usersInGroup($row['share_with']); $shares = array_merge($shares, $usersInGroup); } |