From d90c6d6e2a9c6cbc50e65e388f63a0376297a5b7 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 1 Jun 2016 16:41:30 +0200 Subject: [PATCH] fix permanent error_log --- api/src/Mail/Credentials.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Mail/Credentials.php b/api/src/Mail/Credentials.php index 86970cdf8d..ecf77d7d66 100644 --- a/api/src/Mail/Credentials.php +++ b/api/src/Mail/Credentials.php @@ -271,7 +271,7 @@ class Credentials // check if password is unavailable (admin edits an account with password encrypted with users session PW) and NOT store it if ($password == self::UNAVAILABLE) { - error_log(__METHOD__."(".array2string(func_get_args()).") can NOT store unavailable password, storing without password!"); + //error_log(__METHOD__."(".array2string(func_get_args()).") can NOT store unavailable password, storing without password!"); unset($data['cred_password'], $data['cred_pw_enc']); } //error_log(__METHOD__."($acc_id, '$username', '$password', $type, $account_id, $cred_id, $mcrypt) storing ".array2string($data).' '.function_backtrace());