X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=WEB-INF%2Flib%2Fform%2FTextArea.class.php;h=66101b98d9affb210b06caef49760e2463978fc5;hb=cd5e077ecb497431decde4835138b877d63b261c;hp=ea1009a85b1153b7615fe50efae84e85c599e421;hpb=785d404c84c153bda7d45d3aedfefa81985703b3;p=timetracker.git diff --git a/WEB-INF/lib/form/TextArea.class.php b/WEB-INF/lib/form/TextArea.class.php index ea1009a8..66101b98 100644 --- a/WEB-INF/lib/form/TextArea.class.php +++ b/WEB-INF/lib/form/TextArea.class.php @@ -31,14 +31,14 @@ import('form.FormElement'); class TextArea extends FormElement { var $mColumns = ""; var $mRows = ""; - var $class = 'TextArea'; var $mOnKeyPress = ""; - function __construct($name,$value="") - { - $this->name = $name; - $this->value = $value; - } + function __construct($name, $value = '') + { + $this->class = 'TextArea'; + $this->name = $name; + $this->value = $value; + } function setColumns($value) { $this->mColumns = $value; } function getColumns() { return $this->mColumns; }