From: hickert Date: Mon, 16 Jan 2006 06:42:18 +0000 (+0000) Subject: one ")" to much X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=36abfffcd22ba215bba07e7cd0584b13ee1c1a90;p=gosa.git one ")" to much git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2480 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_password-methods-md5.inc b/include/class_password-methods-md5.inc index 37adff938..caf714753 100644 --- a/include/class_password-methods-md5.inc +++ b/include/class_password-methods-md5.inc @@ -38,7 +38,7 @@ class passwordMethodMd5 extends passwordMethod function generate_hash($pwd) { - return "{md5}".base64_encode( pack('H*', md5($pwd)))); + return "{md5}".base64_encode( pack('H*', md5($pwd))); } }