Arman Forghani
Arman Forghani
As @sebastienros mentioned above you need to make your theme to depend on Orchard.Resources. Also thanks to Orchard, you can override predefined resources such as Bootstrap (by specifying an upper...
Some additional comments: 1. Current implementation of NoLockInterceptor will not success to inject ```WITH (NOLOCK)``` to some queries such as: ``` var query = session.Query() .Join(session.Query(), user => user.Id, userRole...
@sebastienros Yes, I will provide a PR as soon as possible.
@mehranrezaei The reason for this problem is the existence of the wrong attribute value ```"submit.Save"``` ```[Mvc.FormValueRequired("submit.Save")]``` in the AdminController for EditPOST action. ```\src\Orchard.Web\Core\Navigation\Controllers\AdminController.cs```. This must be changed to ```[Mvc.FormValueRequired("submit.Publish")]```.