mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00

This fixes the issue where form elements whose drivers inherit from FormsElementDriver would not persist their changes. Fixes #6100, #6035
9 lines
238 B
C#
9 lines
238 B
C#
using Orchard.Forms.Services;
|
|
|
|
namespace Orchard.Layouts.Services {
|
|
public interface IFormsBasedElementServices : IDependency
|
|
{
|
|
IFormManager FormManager { get; }
|
|
ICultureAccessor CultureAccessor { get; }
|
|
}
|
|
} |