mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
BUGFIX: Stop attempting to filter an UnsavedRelationList
This commit is contained in:
parent
747a801ba5
commit
9e62b91217
@ -73,6 +73,10 @@ if(class_exists('EditableFormField')) {
|
||||
$protector = FormSpamProtectionExtension::get_protector();
|
||||
if (!$protector) return $fields;
|
||||
|
||||
if ($this->Parent()->Fields() instanceof UnsavedRelationList) {
|
||||
return $fields;
|
||||
}
|
||||
|
||||
// Each other text field in this group can be assigned a field mapping
|
||||
$mapGroup = FieldGroup::create(_t(
|
||||
'EditableSpamProtectionField.SPAMFIELDMAPPING',
|
||||
|
Loading…
Reference in New Issue
Block a user