From f01b88100329b2d012f1ea8bd4728d5ddc42fcde Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Fri, 12 Sep 2008 03:32:04 +0000 Subject: [PATCH] MINOR HTMLVarchar->scaffoldFormField() was referencing a class name of different case that didn't exist (change it to the correct one to be sure) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@62313 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/model/fieldtypes/HTMLVarchar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/model/fieldtypes/HTMLVarchar.php b/core/model/fieldtypes/HTMLVarchar.php index df95ee064..7b60cbc76 100755 --- a/core/model/fieldtypes/HTMLVarchar.php +++ b/core/model/fieldtypes/HTMLVarchar.php @@ -9,7 +9,7 @@ class HTMLVarchar extends Varchar { public function scaffoldFormField($title = null) { - return new HTMLOneLineField($this->name, $title); + return new HtmlOneLineField($this->name, $title); } public function scaffoldSearchField($title = null) {