diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-05-28 13:52:18 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-06-06 09:56:01 +0200 |
commit | a432459685a5afb3a9bb844f2bfab2c652fc0d4b (patch) | |
tree | 7adaa7a85d75b5ccb22083db3f46d3df4037cb8e /lib | |
parent | 42a362f2491e5731ce7cc242891c58dd41a76d00 (diff) | |
download | nextcloud-server-a432459685a5afb3a9bb844f2bfab2c652fc0d4b.tar.gz nextcloud-server-a432459685a5afb3a9bb844f2bfab2c652fc0d4b.zip |
use triple equals
Diffstat (limited to 'lib')
-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 9b6a370fe3b..fac1e64e79e 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -430,7 +430,7 @@ class View { $storage1 = $mount->getStorage(); $internalPath1 = $mount->getInternalPath($absolutePath1 . $postFix1); list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2); - if ($internalPath1 == '' and $mount instanceof MoveableMount) { + if ($internalPath1 === '' and $mount instanceof MoveableMount) { /** * @var \OC\Files\Mount\Mount | \OC\Files\Mount\MoveableMount $mount */ |