From 9054ec0125746f54f36f11b00a33332b3f4f5843 Mon Sep 17 00:00:00 2001 From: Shannon Date: Tue, 17 Sep 2013 12:11:01 +1000 Subject: [PATCH] Fixes U4-2859 Cannot save content, authorization errors --- src/Umbraco.Web/Editors/ContentPostValidateAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Editors/ContentPostValidateAttribute.cs b/src/Umbraco.Web/Editors/ContentPostValidateAttribute.cs index b4d9be726a..ec7ff2b109 100644 --- a/src/Umbraco.Web/Editors/ContentPostValidateAttribute.cs +++ b/src/Umbraco.Web/Editors/ContentPostValidateAttribute.cs @@ -63,7 +63,7 @@ namespace Umbraco.Web.Editors switch (contentItem.Action) { case ContentSaveAction.Save: - permissionToCheck = ActionSave.Instance.Letter; + permissionToCheck = ActionUpdate.Instance.Letter; contentToCheck = contentItem.PersistedContent; break; case ContentSaveAction.Publish: