BUGFIX: fixed array to string conversion error with file fields

This commit is contained in:
Will Rossiter 2009-07-05 07:29:24 +00:00
parent 3351ef17b3
commit 8e80ffbc70

View File

@ -31,5 +31,12 @@ class EditableFileField extends EditableFormField {
return new FileField($this->Name, $this->Title);
}
/**
* Workaround to handle uploads on the UserFormPage
*/
public function getValueFromData($data) {
return "";
}
}
?>