If no protector is set then skip the form field

This commit is contained in:
Will Rossiter 2014-11-12 11:24:21 +13:00
parent 05650e912d
commit 949ec2b359
1 changed files with 15 additions and 12 deletions

View File

@ -85,10 +85,12 @@ class FormSpamProtectionExtension extends Extension {
// set custom mapping on this form
$protector = self::get_protector($options);
if(isset($options['mapping'])) {
$protector->setFieldMapping($options['mapping']);
}
if($protector) {
// add the form field
if($field = $protector->getFormField($name, $title)) {
$field->setForm($this->owner);
@ -103,6 +105,7 @@ class FormSpamProtectionExtension extends Extension {
$this->owner->Fields()->push($field);
}
}
}
return $this->owner;
}