MINOR: fixed php syntax fail. I should learn that PHP != JS

This commit is contained in:
Will Rossiter 2009-04-27 03:58:52 +00:00
parent 22a658b8c0
commit 73944fd84f

View File

@ -312,7 +312,7 @@ class EditableFormField extends DataObject {
* @return FormField * @return FormField
*/ */
public function getFormField() { 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 * @return FormField
*/ */
public function getFilterField() { 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);
} }
/** /**