From 2c14f396fbbe5c529e76068e64404d63e02e954b Mon Sep 17 00:00:00 2001 From: Tim Geyssens Date: Thu, 18 Oct 2018 21:28:46 +0200 Subject: [PATCH] Update FileSystemTree.cs Make sure it can find child items in root folders --- .../umbraco.presentation/umbraco/Trees/FileSystemTree.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/Trees/FileSystemTree.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/Trees/FileSystemTree.cs index aed6009d86..06a5863da3 100644 --- a/src/Umbraco.Web/umbraco.presentation/umbraco/Trees/FileSystemTree.cs +++ b/src/Umbraco.Web/umbraco.presentation/umbraco/Trees/FileSystemTree.cs @@ -42,8 +42,7 @@ namespace umbraco.cms.presentation.Trees if (!string.IsNullOrEmpty(this.NodeKey)) { orgPath = this.NodeKey; - path = IOHelper.MapPath(FilePath + orgPath); - orgPath += "/"; + path = IOHelper.MapPath(FilePath+ "/" + orgPath + "/"); } else {