Refactoring - renamed a few things.
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index 9107c96..20b7fc6 100644 (file)
@@ -42,7 +42,7 @@ class TextField extends FormElement {
        function getAsPassword()        { return $this->mPassword; }
 
        function toStringControl() {
-               if (!$this->isEnable()) {
+               if (!$this->isEnabled()) {
                        $html = "<input name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n";
                } else {