Merge pull request #2826 from nextcloud/stable10-2659
[stable10] Fix overwriting parameter
This commit is contained in:
commit
fa6f216cd8
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue