diff --git a/src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs b/src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs index 6ecc0cbe07..cdd79e4eff 100644 --- a/src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs +++ b/src/Orchard.Web/Core/Navigation/Controllers/AdminController.cs @@ -261,7 +261,7 @@ public ActionResult Publish(int id) { _contentManager.Publish(menuPart.ContentItem); - _notifier.Information( + _notifier.Success( string.IsNullOrWhiteSpace(menuPart.MenuText) ? string.IsNullOrWhiteSpace(menuPart.TypeDefinition.DisplayName) ? T("Your content has been published.") @@ -283,7 +283,7 @@ public ActionResult Unpublish(int id) { _contentManager.Unpublish(menuPart.ContentItem); - _notifier.Information( + _notifier.Success( string.IsNullOrWhiteSpace(menuPart.MenuText) ? string.IsNullOrWhiteSpace(menuPart.TypeDefinition.DisplayName) ? T("Your content has been unpublished.") @@ -341,7 +341,7 @@ private ActionResult EditPOST(int id, string returnUrl, Action cond returnUrl = Url.ItemDisplayUrl(contentItem); } - _notifier.Information( + _notifier.Success( string.IsNullOrWhiteSpace(menuPart.MenuText) ? string.IsNullOrWhiteSpace(contentItem.TypeDefinition.DisplayName) ? T("Your content has been saved.")