aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Connector/Sabre/ObjectTree.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-05-10 14:03:14 +0200
committerMorris Jobke <hey@morrisjobke.de>2017-08-01 13:55:07 +0200
commit89238164e12ba8532cdefed16a789cbd4e4efde5 (patch)
treed233da3070e605bd27603fff4e1a26a5082c42e6 /apps/dav/lib/Connector/Sabre/ObjectTree.php
parent0ebdf871e02653bf7e65bf5bdefaec7f92d3c677 (diff)
downloadnextcloud-server-89238164e12ba8532cdefed16a789cbd4e4efde5.tar.gz
nextcloud-server-89238164e12ba8532cdefed16a789cbd4e4efde5.zip
Fix comparisons in the dav app
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/lib/Connector/Sabre/ObjectTree.php')
-rw-r--r--apps/dav/lib/Connector/Sabre/ObjectTree.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/Sabre/ObjectTree.php b/apps/dav/lib/Connector/Sabre/ObjectTree.php
index d298d6be842..3371c655f29 100644
--- a/apps/dav/lib/Connector/Sabre/ObjectTree.php
+++ b/apps/dav/lib/Connector/Sabre/ObjectTree.php
@@ -81,7 +81,7 @@ class ObjectTree extends \Sabre\DAV\Tree {
if (isset($_SERVER['HTTP_OC_CHUNKED'])) {
// resolve to real file name to find the proper node
list($dir, $name) = \Sabre\Uri\split($path);
- if ($dir == '/' || $dir == '.') {
+ if ($dir === '/' || $dir === '.') {
$dir = '';
}