Code

Updated copy & paste
[gosa.git] / gosa-core / include / password-methods / class_password-methods-clear.inc
index a4c1d4333594d68619c44bcbb29323ea546c2d23..91d87d8dfc0788544e18894e717d5c768f19dd8c 100644 (file)
@@ -24,20 +24,20 @@ class passwordMethodClear extends passwordMethod
 {
   var $lockable = FALSE;
 
-  function __construct($config)
-  {
-  }
-  
-  function is_available()
-  {
-    return true;
-  }
-  
-  
-  function generate_hash($pwd)
-  {
-    return $pwd;       
-  }
+       function passwordMethodClear($config)
+       {
+       }
+
+       function is_available()
+       {
+               return true;
+       }
+
+
+       function generate_hash($pwd)
+       {
+               return $pwd;       
+       }
 
   
   function get_hash_name()