mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
Merge pull request #20 from Cheddam/master
FIX: Stop attempting to filter an UnsavedRelationList
This commit is contained in:
commit
9c649f0b6c
@ -73,6 +73,10 @@ if(class_exists('EditableFormField')) {
|
|||||||
$protector = FormSpamProtectionExtension::get_protector();
|
$protector = FormSpamProtectionExtension::get_protector();
|
||||||
if (!$protector) return $fields;
|
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
|
// Each other text field in this group can be assigned a field mapping
|
||||||
$mapGroup = FieldGroup::create(_t(
|
$mapGroup = FieldGroup::create(_t(
|
||||||
'EditableSpamProtectionField.SPAMFIELDMAPPING',
|
'EditableSpamProtectionField.SPAMFIELDMAPPING',
|
||||||
|
Loading…
Reference in New Issue
Block a user