diff options
Diffstat (limited to 'h-source/Library/Form/Select.php')
-rwxr-xr-x | h-source/Library/Form/Select.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/h-source/Library/Form/Select.php b/h-source/Library/Form/Select.php index db88124..884b0b2 100755 --- a/h-source/Library/Form/Select.php +++ b/h-source/Library/Form/Select.php @@ -31,14 +31,16 @@ class Form_Select extends Form_Entry public function render($value = null) { - $wrap = $this->getWrapElements(); - $returnString = "<div class='".$this->getEntryClass()."'>\n\t"; - $returnString .= $wrap[0]; - $returnString .= $this->getLabelTag(); + $wrap = $this->getWrapElements($value); + $returnString = $wrap[0]; + $returnString .= "<div class='".$this->getEntryClass()."'>\n\t"; $returnString .= $wrap[1]; - $returnString .= Html_Form::select($this->entryName,$value,$this->options,$this->className, $this->idName); + $returnString .= $this->getLabelTag(); $returnString .= $wrap[2]; + $returnString .= Html_Form::select($this->entryName,$value,$this->options,$this->className, $this->idName); + $returnString .= $wrap[3]; $returnString .="</div>\n"; + $returnString .= $wrap[4]; return $returnString; } |