summaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-04-25 14:49:49 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-04-25 14:49:49 +0200
commitab690371b7d36f9f076863da51e4cbde9ed4de31 (patch)
treea4c8420762e738c7dc0dd44513f75eb7c8dad9fb /lib/private
parent53484244176ee9c026affa67e4568e7d93dd4a36 (diff)
parent465152023da05768d05c98e934ff32f2fc19a2d2 (diff)
downloadnextcloud-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.php2
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 {