Some renaming.
[timetracker.git] / WEB-INF / lib / form / DateField.class.php
index b85632d..46ff7b8 100644 (file)
@@ -35,7 +35,7 @@ class DateField extends TextField {
   var $lToday      = "Today";
 
   var $mDateObj;
-  var $cClassName  = "DateField";
+  var $class = 'DateField';
 
   var $lCalendarButtons = array('today'=>'Today', 'close'=>'Close');
 
@@ -81,10 +81,9 @@ class DateField extends TextField {
     }
   }
 
-  function toStringControl()  {
-    if (!$this->isRenderable()) return "";
+  function toStringControl() {
 
-    if (!$this->isEnable()) {
+    if (!$this->isEnabled()) {
       $html = htmlspecialchars($this->getValue()).
         "<input type=\"hidden\" name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\">\n";
     } else {