class TextField extends FormElement {
     var $mPassword     = false;
-    var $class = 'TextField';
+    //var $class = 'TextField';
 
        function __construct($name,$value="")
        {
+            $this->class = 'TextField';
                $this->name = $name;
                $this->value = $value;
        }
        function setAsPassword($name)   { $this->mPassword = $name;     }
        function getAsPassword()        { return $this->mPassword; }
 
-       function toStringControl() {
+       function getHtml() {
                if (!$this->isEnabled()) {
                        $html = "<input name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n";
                } else {