diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-07-19 02:23:57 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-07-19 02:23:57 +0200 |
commit | a945ce908b2e8447c4a93b14c711fc066d9e8daf (patch) | |
tree | 1ee0fee7eade69bab61ec3f1e4073475b4eb4f5e /lib/connector | |
parent | 93750d2658d52df4475fefde79150a68a8012878 (diff) | |
download | nextcloud-server-a945ce908b2e8447c4a93b14c711fc066d9e8daf.tar.gz nextcloud-server-a945ce908b2e8447c4a93b14c711fc066d9e8daf.zip |
style fix
Diffstat (limited to 'lib/connector')
-rw-r--r-- | lib/connector/sabre/objecttree.php | 2 |
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); |