diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-25 14:50:32 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-25 14:50:32 +0200 |
commit | ed7e009e056cb46b67aba8827efb5fdb3961de1c (patch) | |
tree | a4c8420762e738c7dc0dd44513f75eb7c8dad9fb | |
parent | 53484244176ee9c026affa67e4568e7d93dd4a36 (diff) | |
parent | ab690371b7d36f9f076863da51e4cbde9ed4de31 (diff) | |
download | nextcloud-server-ed7e009e056cb46b67aba8827efb5fdb3961de1c.tar.gz nextcloud-server-ed7e009e056cb46b67aba8827efb5fdb3961de1c.zip |
Merge pull request #24247 from owncloud/weits-patch-1
Weits patch 1
-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 { |