Fixes #29401: Bug - packager doesn't handle files that are at the root of the website
[TFS Changeset #80525]
This commit is contained in:
@@ -207,7 +207,7 @@ namespace umbraco.cms.businesslogic.packager {
|
||||
|
||||
XmlNode file = doc.CreateElement("file");
|
||||
file.AppendChild(_node("guid", newFileName, doc));
|
||||
file.AppendChild(_node("orgPath", orgPath, doc));
|
||||
file.AppendChild(_node("orgPath", orgPath == "" ? "/" : orgPath, doc));
|
||||
file.AppendChild(_node("orgName", orgName, doc));
|
||||
|
||||
files.AppendChild(file);
|
||||
|
||||
Reference in New Issue
Block a user