Code

Updated error messages
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 3 Mar 2008 16:24:27 +0000 (16:24 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 3 Mar 2008 16:24:27 +0000 (16:24 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9258 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/password-methods/class_password-methods-sha.inc
gosa-core/include/password-methods/class_password-methods-ssha.inc

index 3cd0ea656f4755f86e78ab18c001463df93926ab..7c5d80c120320da250e9fbf067b109f9f81a16e0 100644 (file)
@@ -45,7 +45,7 @@ class passwordMethodsha extends passwordMethod
     }elseif (function_exists('mhash')) {
       $hash = "{SHA}" . base64_encode(mHash(MHASH_SHA1, $password));
     }else{
-      msg_dialog::display(_("Configuration error"), sprintf(_("Cannot use %s encryption: no PHP functions for sha1/mhash available"), 'SHA'), ERROR_DIALOG);
+      msg_dialog::display(_("Configuration error"), msgPool::missingext("mhash"), ERROR_DIALOG);
       return false;
     }
 
index 3851c62d2cb9959195c4271bede526bef8083977..e2d6e27d5e8dc8cbb7dd243f2c9c8714f4ddfde2 100644 (file)
@@ -48,7 +48,7 @@ class passwordMethodssha extends passwordMethod
       $salt=mhash_keygen_s2k(MHASH_SHA1,$pwd, substr(pack("h*",md5(mt_rand())),0,8),4);
       $pwd= "{SSHA}".base64_encode(mhash(MHASH_SHA1, $pwd.$salt).$salt);
     } else {
-      msg_dialog::display(_("Configuration error"), sprintf(_("Cannot use %s encryption: no PHP functions for sha1/mhash available"), 'SSHA'), ERROR_DIALOG);
+      msg_dialog::display(_("Configuration error"), msgPool::missingext("mhash"), ERROR_DIALOG);
       return(false);
     }
     return $pwd;