From b722bce2ed6d797eccc4160114a94da30e0b5a8c Mon Sep 17 00:00:00 2001 From: Shannon Deminick Date: Wed, 30 Jan 2013 19:15:16 +0600 Subject: [PATCH] Fixes: #U4-1593 - ensures that the content tree checks for the Published property not HasPublishedVersion() --- .../umbraco.presentation/umbraco/Trees/BaseContentTree.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/Trees/BaseContentTree.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/Trees/BaseContentTree.cs index aa5e64c9ea..6a86e35fba 100644 --- a/src/Umbraco.Web/umbraco.presentation/umbraco/Trees/BaseContentTree.cs +++ b/src/Umbraco.Web/umbraco.presentation/umbraco/Trees/BaseContentTree.cs @@ -113,7 +113,7 @@ function openContent(id) { node.OpenIcon = dd.ContentTypeIcon; } - if (dd.HasPublishedVersion() == false) + if (dd.Published == false) node.Style.DimNode(); if (dd.HasPendingChanges())