From: Björn Schießle Date: Wed, 29 May 2013 13:14:15 +0000 (+0200) Subject: remove unnecessary variable X-Git-Tag: v6.0.0alpha2~705^2~13 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8587f565d2a7f72ec0244e508370447810199bfe;p=nextcloud-server.git remove unnecessary variable --- 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) {