X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/4fdb2cd8b1c8990a7ea8ed40b275dc51174e6585..1cf228c258ba8a8950b1a55bc25b93768bf50184:/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 5d484668..be884f0d 100644
--- a/WEB-INF/lib/form/TextArea.class.php
+++ b/WEB-INF/lib/form/TextArea.class.php
@@ -29,8 +29,6 @@
import('form.FormElement');
class TextArea extends FormElement {
- var $mColumns = "";
- var $mRows = "";
var $mOnKeyPress = "";
function __construct($name)
@@ -39,31 +37,17 @@ class TextArea extends FormElement {
$this->name = $name;
}
- function setColumns($value) { $this->mColumns = $value; }
- function getColumns() { return $this->mColumns; }
-
- function setRows($value) { $this->mRows = $value; }
- function getRows() { return $this->mRows; }
-
function getHtml() {
- if ($this->id=="") $this->id = $this->mName;
-
- $js_maxlen = "";
+ if (empty($this->id))
+ $this->id = $this->name;
$html = "\n\t";
- if ($js_maxlen) $html = $js_maxlen."\n".$html;
return $html;
}
-
- function getExtraScript() {
- $s = "\n";
- return $s;
- }
}