X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/0fa80122e692abac96010f4da8ed55c3aa52b81b..4fdb2cd8b1c8990a7ea8ed40b275dc51174e6585:/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 66101b98..5d484668 100644 --- a/WEB-INF/lib/form/TextArea.class.php +++ b/WEB-INF/lib/form/TextArea.class.php @@ -33,13 +33,12 @@ class TextArea extends FormElement { var $mRows = ""; var $mOnKeyPress = ""; - function __construct($name, $value = '') + function __construct($name) { $this->class = 'TextArea'; $this->name = $name; - $this->value = $value; } - + function setColumns($value) { $this->mColumns = $value; } function getColumns() { return $this->mColumns; }