]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix comment, remove unused variable
authorBjörn Schießle <schiessle@owncloud.com>
Mon, 22 Apr 2013 12:14:28 +0000 (14:14 +0200)
committerBjörn Schießle <schiessle@owncloud.com>
Mon, 22 Apr 2013 12:14:28 +0000 (14:14 +0200)
apps/files_encryption/lib/util.php

index d1377df9a95a2f7af19c5033e570c59e53b98c78..1ba339c15df3a7182e8bde0e0425ef0e887d9330 100644 (file)
@@ -805,15 +805,10 @@ class Util {
                // Make sure that a share key is generated for the owner too
                list($owner, $ownerPath) = $this->getUidAndFilename($filePath);
 
-               //$userIds = array( $this->userId );
-               $userIds = array();
-
                if ( $sharingEnabled ) {
                
                        // Find out who, if anyone, is sharing the file
-                       $shareUids = \OCP\Share::getUsersSharingFile( $ownerPath, $owner,true, true, true );
-                       
-                       $userIds = array_merge( $userIds, $shareUids );
+                       $userIds = \OCP\Share::getUsersSharingFile( $ownerPath, $owner,true, true, true );
                
                }
                
@@ -889,7 +884,7 @@ class Util {
        }
 
        /**
-        *brief geo recursively through a dir and collect all files and sub files.
+        * @brief geo recursively through a dir and collect all files and sub files.
         * @param type $dir relative to the users files folder
         * @return array with list of files relative to the users files folder
         */