Skip to content

Commit

Permalink
Merge branch 'v8/8.1' into v8/dev
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/SolutionInfo.cs
  • Loading branch information
nul800sebastiaan committed Sep 5, 2019
2 parents 4b344ac + b94d78e commit 47f365e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions build/NuSpecs/tools/Web.config.install.xdt
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
<dependentAssembly xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Data.SqlServerCe')" xdt:Transform="Remove" />
<dependentAssembly xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.ValueTuple')" xdt:Transform="Remove" />
<dependentAssembly xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Net.Http.Formatting')" xdt:Transform="Remove" />
<dependentAssembly xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Collections.Immutable')" xdt:Transform="Remove" />
</assemblyBinding>
</runtime>

Expand Down
2 changes: 1 addition & 1 deletion src/Umbraco.Web.UI.Client/src/less/property-editors.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//
// Container styles
// --------------------------------------------------
.umb-property-editor {
.umb-property-editor {
width: 100%;
}

Expand Down
2 changes: 0 additions & 2 deletions src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,7 @@
<DevelopmentServerPort>8200</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:8200/</IISUrl>
<DevelopmentServerPort>8130</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:8130</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
Expand Down
6 changes: 3 additions & 3 deletions src/Umbraco.Web/PublishedCache/NuCache/ContentStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -712,9 +712,9 @@ private void ClearBranchLocked(ContentNode content)
var id = content.FirstChildContentId;
while (id > 0)
{
var link = GetLinkedNode(id, "child");
ClearBranchLocked(link.Value);
id = link.Value.NextSiblingContentId;
var child = GetLinkedNode(id, "child").Value;
ClearBranchLocked(child);
id = child.NextSiblingContentId;
}
}

Expand Down

0 comments on commit 47f365e

Please sign in to comment.