Code

Fixed broken fetch() call on non existing resources.
[gosa.git] / include / class_password-methods-md5.inc
index 43b3ec74c5b9811b6ddfe8163ff70ee53268401e..ea16ce99c9a933378b57461ddb68a05540af9ee5 100644 (file)
@@ -40,6 +40,12 @@ class passwordMethodMd5 extends passwordMethod
        {
                return  "{MD5}".base64_encode( pack('H*', md5($pwd)));
        }
+
+
+  function get_hash_name()
+  {
+    return "md5";
+  }
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: