Fixing that saving a menu item shouldn't publish it if it's unpublished

This commit is contained in:
Benedek Farkas 2024-11-20 15:54:19 +01:00
parent 2c3fe26900
commit 3ec2daa9d6

View File

@ -244,7 +244,8 @@ namespace Orchard.Core.Navigation.Controllers {
public ActionResult EditPOST(int id, string returnUrl) { public ActionResult EditPOST(int id, string returnUrl) {
return EditPOST(id, returnUrl, contentItem => { return EditPOST(id, returnUrl, contentItem => {
if (!contentItem.Has<IPublishingControlAspect>() if (!contentItem.Has<IPublishingControlAspect>()
&& !contentItem.TypeDefinition.Settings.GetModel<ContentTypeSettings>().Draftable) && !contentItem.TypeDefinition.Settings.GetModel<ContentTypeSettings>().Draftable
&& contentItem.IsPublished())
_contentManager.Publish(contentItem); _contentManager.Publish(contentItem);
}); });
} }