Merge pull request #2826 from nextcloud/stable10-2659

[stable10] Fix overwriting parameter
This commit is contained in:
Roeland Jago Douma 2016-12-22 15:08:59 +01:00 committed by GitHub
commit fa6f216cd8
1 changed files with 3 additions and 3 deletions

View File

@ -115,9 +115,9 @@ class SharedMount extends MountPoint implements MoveableMount {
private function updateFileTarget($newPath, &$share) {
$share->setTarget($newPath);
foreach ($this->groupedShares as $share) {
$share->setTarget($newPath);
\OC::$server->getShareManager()->moveShare($share, $this->user);
foreach ($this->groupedShares as $tmpShare) {
$tmpShare->setTarget($newPath);
\OC::$server->getShareManager()->moveShare($tmpShare, $this->user);
}
}