diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-04-25 14:49:49 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-04-25 14:49:49 +0200 |
commit | ab690371b7d36f9f076863da51e4cbde9ed4de31 (patch) | |
tree | a4c8420762e738c7dc0dd44513f75eb7c8dad9fb /lib/private | |
parent | 53484244176ee9c026affa67e4568e7d93dd4a36 (diff) | |
parent | 465152023da05768d05c98e934ff32f2fc19a2d2 (diff) | |
download | nextcloud-server-ab690371b7d36f9f076863da51e4cbde9ed4de31.tar.gz nextcloud-server-ab690371b7d36f9f076863da51e4cbde9ed4de31.zip |
Merge branch 'patch-1' of https://github.com/weits/core into weits-patch-1
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Files/View.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index aac33a4598c..22e53a00706 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -726,7 +726,7 @@ class View { $result = false; } // moving a file/folder within the same mount point - } elseif ($storage1 == $storage2) { + } elseif ($storage1 === $storage2) { if ($storage1) { $result = $storage1->rename($internalPath1, $internalPath2); } else { |