diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-05-29 15:14:15 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-05-29 15:14:15 +0200 |
commit | 8587f565d2a7f72ec0244e508370447810199bfe (patch) | |
tree | 10061b5e28b61ee412bcbedb4ab4240c9b240f9f /lib | |
parent | 63a2bec6e53e0a7db70599334914625a72015f08 (diff) | |
download | nextcloud-server-8587f565d2a7f72ec0244e508370447810199bfe.tar.gz nextcloud-server-8587f565d2a7f72ec0244e508370447810199bfe.zip |
remove unnecessary variable
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/share.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/public/share.php b/lib/public/share.php index 2b7bf59219f..8508eb96e5e 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -207,8 +207,7 @@ class Share { // let's get the parent for the next round $meta = $cache->get((int)$source); - $parent = $meta['parent']; - $source = $parent; + $source = $meta['parent']; } // Include owner in list of users, if requested if ($includeOwner) { |