MINOR Code formatting fix in FormField

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@70608 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2009-01-22 01:51:40 +00:00 committed by Sam Minnee
parent 59da2e1887
commit 6eec6006a5

View File

@ -481,7 +481,8 @@ HTML;
*
* @todo shouldn't this be an abstract method?
*/
function jsValidation() {}
function jsValidation() {
}
/**
* Validation Functions for each field type by default
@ -489,7 +490,9 @@ HTML;
*
* @todo shouldn't this be an abstract method?
*/
function validate(){return true;}
function validate() {
return true;
}
/**
* Describe this field, provide help text for it.