mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
BUG Fix compat with userforms/translatable
This commit is contained in:
parent
e9df40cc5a
commit
64b0d6203f
@ -15,6 +15,16 @@ class UserDefinedForm extends Page {
|
|||||||
* @var string Required Identifier
|
* @var string Required Identifier
|
||||||
*/
|
*/
|
||||||
private static $required_identifier = null;
|
private static $required_identifier = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prevent translatable module from attepmting to translate FieldEditor
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
* @config
|
||||||
|
*/
|
||||||
|
private static $translate_excluded_fields = array(
|
||||||
|
'Fields'
|
||||||
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array Fields on the user defined form page.
|
* @var array Fields on the user defined form page.
|
||||||
|
Loading…
Reference in New Issue
Block a user