summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-07-19 02:23:57 +0200
committerRobin Appelman <icewind@owncloud.com>2013-07-19 02:23:57 +0200
commita945ce908b2e8447c4a93b14c711fc066d9e8daf (patch)
tree1ee0fee7eade69bab61ec3f1e4073475b4eb4f5e /lib
parent93750d2658d52df4475fefde79150a68a8012878 (diff)
downloadnextcloud-server-a945ce908b2e8447c4a93b14c711fc066d9e8daf.tar.gz
nextcloud-server-a945ce908b2e8447c4a93b14c711fc066d9e8daf.zip
style fix
Diffstat (limited to 'lib')
-rw-r--r--lib/connector/sabre/objecttree.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connector/sabre/objecttree.php b/lib/connector/sabre/objecttree.php
index dbc8c452d1b..c4ddcbecbb8 100644
--- a/lib/connector/sabre/objecttree.php
+++ b/lib/connector/sabre/objecttree.php
@@ -34,7 +34,7 @@ class ObjectTree extends \Sabre_DAV_ObjectTree {
throw new \Sabre_DAV_Exception_NotFound('File with name ' . $path . ' could not be located');
}
- if ($info['mimetype'] == 'httpd/unix-directory') {
+ if ($info['mimetype'] === 'httpd/unix-directory') {
$node = new \OC_Connector_Sabre_Directory($path);
} else {
$node = new \OC_Connector_Sabre_File($path);