From a945ce908b2e8447c4a93b14c711fc066d9e8daf Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 19 Jul 2013 02:23:57 +0200 Subject: [PATCH] style fix --- lib/connector/sabre/objecttree.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connector/sabre/objecttree.php b/lib/connector/sabre/objecttree.php index dbc8c452d1..c4ddcbecbb 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);