From 73944fd84f18abe07010e5c95043123e1156cdcf Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Mon, 27 Apr 2009 03:58:52 +0000 Subject: [PATCH] MINOR: fixed php syntax fail. I should learn that PHP != JS --- code/editor/EditableFormField.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/editor/EditableFormField.php b/code/editor/EditableFormField.php index 7fbefca..8e189eb 100755 --- a/code/editor/EditableFormField.php +++ b/code/editor/EditableFormField.php @@ -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); } /**