diff --git a/core/model/fieldtypes/Text.php b/core/model/fieldtypes/Text.php index 22c5bfe71..4620812ab 100644 --- a/core/model/fieldtypes/Text.php +++ b/core/model/fieldtypes/Text.php @@ -266,6 +266,10 @@ class Text extends DBField { return Convert::raw2xml($this->value); } } + + public function scaffoldFormField($title = null, $params = null) { + return new TextareaField($this->name, $title); + } } ?>