Fixes for search of members + Removed fixme in member that apparently are not necessary after tags refactoring

This commit is contained in:
Bjarke Berg
2019-01-24 12:17:30 +01:00
parent 6e1a860e77
commit 49b2a9a080
5 changed files with 5 additions and 5 deletions

View File

@@ -81,7 +81,7 @@ namespace Umbraco.Core.Configuration
{
try
{
// fixme/task - stop having version in web.config appSettings
// TODO - https://github.com/umbraco/Umbraco-CMS/issues/4238 - stop having version in web.config appSettings
var value = ConfigurationManager.AppSettings["umbracoConfigurationStatus"];
return value.IsNullOrWhiteSpace() ? null : SemVersion.TryParse(value, out var semver) ? semver : null;
}