aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/lib/DAV/Tree.php
diff options
context:
space:
mode:
authorM. Dent <dentm42@gmail.com>2018-10-31 01:32:44 +0100
committerM. Dent <dentm42@gmail.com>2018-10-31 01:32:44 +0100
commitf9ab7647dd660adb37464614616cb8484c500de4 (patch)
treea3155f3820e9c4e86941a13d878a914b35941a61 /vendor/sabre/dav/lib/DAV/Tree.php
parent046d264688aae76874fa22870f4bed77192335c2 (diff)
parentfc6ff45c4976d158ac565a7693b2e4d30fe70e33 (diff)
downloadvolse-hubzilla-f9ab7647dd660adb37464614616cb8484c500de4.tar.gz
volse-hubzilla-f9ab7647dd660adb37464614616cb8484c500de4.tar.bz2
volse-hubzilla-f9ab7647dd660adb37464614616cb8484c500de4.zip
Merge branch 'composer-updates' into 'dev'
update html_to_markdown, smarty and sabredav libs via composer See merge request hubzilla/core!1361
Diffstat (limited to 'vendor/sabre/dav/lib/DAV/Tree.php')
-rw-r--r--vendor/sabre/dav/lib/DAV/Tree.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/sabre/dav/lib/DAV/Tree.php b/vendor/sabre/dav/lib/DAV/Tree.php
index 5d2792503..7c04f0915 100644
--- a/vendor/sabre/dav/lib/DAV/Tree.php
+++ b/vendor/sabre/dav/lib/DAV/Tree.php
@@ -298,7 +298,9 @@ class Tree {
*/
protected function copyNode(INode $source, ICollection $destinationParent, $destinationName = null) {
- if (!$destinationName) $destinationName = $source->getName();
+ if ((string)$destinationName === '') {
+ $destinationName = $source->getName();
+ }
if ($source instanceof IFile) {