mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
MINOR: fixed php syntax fail. I should learn that PHP != JS
This commit is contained in:
parent
22a658b8c0
commit
73944fd84f
@ -312,7 +312,7 @@ class EditableFormField extends DataObject {
|
||||
* @return FormField
|
||||
*/
|
||||
public function getFormField() {
|
||||
user_error("Please implement a getFormField() on your EditableFormClass "+ $this->ClassName, E_USER_ERROR);
|
||||
user_error("Please implement a getFormField() on your EditableFormClass ". $this->ClassName, E_USER_ERROR);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -322,7 +322,7 @@ class EditableFormField extends DataObject {
|
||||
* @return FormField
|
||||
*/
|
||||
public function getFilterField() {
|
||||
user_error("Please implement a getFilterField() on your EditableFormClass "+ $this->ClassName, E_USER_ERROR);
|
||||
user_error("Please implement a getFilterField() on your EditableFormClass ". $this->ClassName, E_USER_ERROR);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user