diff --git a/src/Umbraco.Web/PublishedCache/XmlPublishedCache/PublishedContentCache.cs b/src/Umbraco.Web/PublishedCache/XmlPublishedCache/PublishedContentCache.cs index c8ddd77afd..ae612afe09 100644 --- a/src/Umbraco.Web/PublishedCache/XmlPublishedCache/PublishedContentCache.cs +++ b/src/Umbraco.Web/PublishedCache/XmlPublishedCache/PublishedContentCache.cs @@ -251,7 +251,7 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache // move to parent node e = (XmlElement) e.ParentNode; - id = int.Parse(e.GetAttribute("id")); + id = int.Parse(e.GetAttribute("id"), CultureInfo.InvariantCulture); hasDomains = id != -1 && domainHelper.NodeHasDomains(id); }