Refactored ActionErrors.class.php.
authoranuko <support@anuko.com>
Sun, 5 Feb 2017 15:29:36 +0000 (15:29 +0000)
committeranuko <support@anuko.com>
Sun, 5 Feb 2017 15:29:36 +0000 (15:29 +0000)
WEB-INF/lib/auth/Auth_ldap.class.php
WEB-INF/lib/form/ActionErrors.class.php
WEB-INF/templates/footer.tpl

index 625c478..3710167 100644 (file)
@@ -262,7 +262,7 @@ class Auth_ldap extends Auth {
 
         if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) {
           echo '$member_of'; var_dump($member_of); echo '<br />';
-        };
+        }
 
         // check for group membership
         foreach ($member_of as $check_grp) {
index 1f8aceb..3eaf687 100644 (file)
 // +----------------------------------------------------------------------+
 
 class ActionErrors {
-    var $errors = array();
+  var $errors = array();
 
-    function __construct() {
-    }
+  function __construct() {
+  }
 
-    function no() {
-        return (count($this->errors)>0 ? false : true);
-    }
+  function no() {
+    return (count($this->errors) > 0 ? false : true);
+  }
 
-    function yes() {
-        return (count($this->errors)>0 ? true : false);
-    }
+  function yes() {
+    return (count($this->errors) > 0 ? true : false);
+  }
 
-    function add($message, $arg0 = '', $arg1 = '') {
-       $patterns = array ("/\{0\}/","/\{1\}/");
-               $replace = array ($arg0, $arg1);
-               $message = preg_replace ($patterns, $replace, $message);
-        $this->errors[]["message"] = $message;
-    }    
-    
-    function get($key) {
-        return $this->errors["$key"]["message"];
-    }
-    
-    function dump() {
-        print_r($this->errors);
-    }
-    
-    function getErrors() {
-        return $this->errors;
-    }
+  function add($message, $arg0 = '', $arg1 = '') {
+    $patterns = array ('/\{0\}/','/\{1\}/');
+    $replace = array($arg0, $arg1);
+    $message = preg_replace ($patterns, $replace, $message);
+    $this->errors[]['message'] = $message;
+  }
+
+  function dump() {
+    print_r($this->errors);
+  }
+
+  function getErrors() {
+    return $this->errors;
+  }
 }
index 3a12372..65062b9 100644 (file)
@@ -12,7 +12,7 @@
       <br>
       <table cellspacing="0" cellpadding="4" width="100%" border="0">
         <tr>
-          <td align="center">&nbsp;Anuko Time Tracker 1.9.36.3561 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+          <td align="center">&nbsp;Anuko Time Tracker 1.9.36.3562 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
             <a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
             <a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
             <a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>