mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
MINOR: hide required configuration, field validation is handled by the form field directly, not the form as things like widgets will always fail the built in validation. Fixes #6752
This commit is contained in:
parent
237d08d5dd
commit
c70f270d86
@ -17,9 +17,19 @@ if(class_exists('EditableFormField')){
|
|||||||
if($protector = SpamProtectorManager::get_spam_protector()) {
|
if($protector = SpamProtectorManager::get_spam_protector()) {
|
||||||
if($protector) {
|
if($protector) {
|
||||||
$protector = new $protector();
|
$protector = new $protector();
|
||||||
|
|
||||||
return $protector->getFormField($this->Name, $this->Title, null);
|
return $protector->getFormField($this->Name, $this->Title, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getFieldValidationOptions() {
|
||||||
|
return new FieldSet();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getRequired() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user