FIX Typo in userforms form field class name

This commit is contained in:
Robbie Averill 2017-08-28 17:41:04 +12:00
parent 680411e2ac
commit 05fcdb6f41
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
--- ---
name: spamprotection Name: spamprotection
--- ---
SilverStripe\Forms\Form: SilverStripe\Forms\Form:
extensions: extensions:

View File

@ -18,7 +18,7 @@ use SilverStripe\UserForms\Model\EditableFormField\EditableTextField;
/** /**
* @todo The userforms namespaces may still change, as the branch is not merged in yet * @todo The userforms namespaces may still change, as the branch is not merged in yet
*/ */
if (!class_exists(EditableFormFields::class)) { if (!class_exists(EditableFormField::class)) {
return; return;
} }