Getting rid of PHP Deprecated warnings.
[timetracker.git] / WEB-INF / lib / form / ActionErrors.class.php
index 0206136..1f8aceb 100644 (file)
 class ActionErrors {
     var $errors = array();
 
-    function ActionErrors() {
-    }
-
-    function isEmpty() {
-        return (count($this->errors)>0 ? false : true);
-    }
-
-    function exist() {
-        return (count($this->errors)>0 ? true : false);
+    function __construct() {
     }
 
     function no() {