Changed default value of HideTopLevelNodeFromPath to true

This commit is contained in:
Bjarke Berg
2020-08-24 14:16:34 +02:00
parent 49ce3da698
commit 892a7e0b34

View File

@@ -42,7 +42,7 @@ namespace Umbraco.Configuration.Models
public string DefaultUILanguage => _configuration.GetValue(Prefix + "DefaultUILanguage", "en-US");
public bool HideTopLevelNodeFromPath =>
_configuration.GetValue(Prefix + "HideTopLevelNodeFromPath", false);
_configuration.GetValue(Prefix + "HideTopLevelNodeFromPath", true);
public bool UseHttps => _configuration.GetValue(Prefix + "UseHttps", false);
public int VersionCheckPeriod => _configuration.GetValue(Prefix + "VersionCheckPeriod", 7);