BUG 7611 Change in the textArea element to store without adjusting content.

This commit is contained in:
Hector Cortez
2011-09-08 17:28:00 -04:00
parent 0a67605671
commit 38b3aafee4

View File

@@ -1507,7 +1507,7 @@ class XmlForm_Field_Textarea extends XmlForm_Field {
$html .= '<textarea '.$readOnlyText.' '; $html .= '<textarea '.$readOnlyText.' ';
$html .= 'id="form['.$this->name.']" '; $html .= 'id="form['.$this->name.']" ';
$html .= 'name="form['.$this->name.']" '; $html .= 'name="form['.$this->name.']" ';
$html .= 'wrap="hard" cols="'.$this->cols.'" rows="'.$this->rows.'" '; $html .= 'wrap="soft" cols="'.$this->cols.'" rows="'.$this->rows.'" ';
$html .= 'style="'.$scrollStyle.'" wrap="'.$this->htmlentities($this->wrap, ENT_QUOTES, 'UTF-8').'" '; $html .= 'style="'.$scrollStyle.'" wrap="'.$this->htmlentities($this->wrap, ENT_QUOTES, 'UTF-8').'" ';
$html .= $this->NSDefaultValue().' '; $html .= $this->NSDefaultValue().' ';
$html .= $this->NSRequiredValue().' '; $html .= $this->NSRequiredValue().' ';