diff --git a/src/Umbraco.Core/PropertyEditors/PropertyValueEditor.cs b/src/Umbraco.Core/PropertyEditors/PropertyValueEditor.cs index 48ede3d2b8..306ca4dbb0 100644 --- a/src/Umbraco.Core/PropertyEditors/PropertyValueEditor.cs +++ b/src/Umbraco.Core/PropertyEditors/PropertyValueEditor.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Globalization; using System.Linq; using System.Xml.Linq; using Newtonsoft.Json; @@ -127,7 +128,7 @@ namespace Umbraco.Core.PropertyEditors /// public DataTypeDatabaseType GetDatabaseType() { - switch (ValueType.ToUpper()) + switch (ValueType.ToUpper(CultureInfo.InvariantCulture)) { case "INT": case "INTEGER":