X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/e1703495130c8ed88fe210f50a2a6b453b3c566b..cd5e077ecb497431decde4835138b877d63b261c:/WEB-INF/lib/form/TextArea.class.php 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; }