From 3620ae3639c47a12eae8ac65f2d340ec9efccdab Mon Sep 17 00:00:00 2001 From: alf Date: Tue, 1 Feb 2022 06:07:18 +0300 Subject: [PATCH] add error messages from plugin password to debug --- password_recovery.php | 1 + 1 file changed, 1 insertion(+) diff --git a/password_recovery.php b/password_recovery.php index 118472b..26de2c6 100644 --- a/password_recovery.php +++ b/password_recovery.php @@ -286,6 +286,7 @@ class password_recovery extends rcube_plugin { if ($result != 0) { $message = $this->gettext('write_failed') . ": " . $result; $type = 'error'; + $this->debug($message); } } else { $save['password'] = crypt($newpassword, '$1$' . rcube_utils::random_bytes(9));