X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/60d2288b7fca6caf0f5d9d3eee972f040eb24fb0..785d404c84c153bda7d45d3aedfefa81985703b3:/WEB-INF/lib/form/TextField.class.php
diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php
index b4b1c5d6..45455d0d 100644
--- a/WEB-INF/lib/form/TextField.class.php
+++ b/WEB-INF/lib/form/TextField.class.php
@@ -29,8 +29,6 @@
import('form.FormElement');
class TextField extends FormElement {
- var $mPassword = false;
- //var $class = 'TextField';
function __construct($name,$value="")
{
@@ -38,9 +36,6 @@ class TextField extends FormElement {
$this->name = $name;
$this->value = $value;
}
-
- function setAsPassword($name) { $this->mPassword = $name; }
- function getAsPassword() { return $this->mPassword; }
function getHtml() {
if (!$this->isEnabled()) {
@@ -49,8 +44,7 @@ class TextField extends FormElement {
if ($this->id=="") $this->id = $this->name;
- $html = "\n\tmPassword ? " type=\"password\"" : " type=\"text\"");
+ $html = "\n\tname\" id=\"$this->id\"";
if ($this->size!="")