Browse Source

bugfixing

andre 5 years ago
parent
commit
cc58c51c0b
1 changed files with 8 additions and 1 deletions
  1. 8 1
      zimbraSingle.inc

+ 8 - 1
zimbraSingle.inc

@@ -268,7 +268,14 @@ function zimbraSingleDeleteAccount($userData)
 
 function zimbraSingleChangePassword($userData) {
     $accessData = zimbraSingleGetAccess();
-    $passDecrypt = localAPI('DecryptPassword', array('password2' => $userData['password']));
+    logModuleCall(
+        'zimbrasingle',
+        __FUNCTION__,
+        $userData,
+        "Debug",
+        ""
+    );
+$passDecrypt = localAPI('DecryptPassword', array('password2' => $userData['password']));
     if ($passDecrypt['result'] == 'success') {
         $userData['password'] = $passDecrypt['password'];
     }