MINOR Code formatting changes for readability and consistency in DropdownField->Field()

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63420 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2008-09-30 20:08:17 +00:00
parent b675fbe1ec
commit c08f6e4dbb

View File

@ -45,10 +45,14 @@ class DropdownField extends FormField {
$this->isSelected = true;
}
$options .= $this->createTag('option', array(
'selected' => $selected,
'value' => $value
), $title);
$options .= $this->createTag(
'option',
array(
'selected' => $selected,
'value' => $value
),
$title
);
}
$attributes = array(