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
This commit is contained in:
Sean Harvey 2008-09-12 03:32:04 +00:00
parent 14dc406122
commit f01b881003

View File

@ -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) {