Update changelog

[ci skip]
pull/5964/merge
Aleksander Machniak 4 years ago
parent 9bec8dd506
commit 7dcba95605

@ -25,6 +25,7 @@ CHANGELOG Roundcube Webmail
- Markasjunk: Fix regression in jsevent driver (#7361) - Markasjunk: Fix regression in jsevent driver (#7361)
- Fix missing flag indication on collapsed thread in Larry and Elastic (#7366) - Fix missing flag indication on collapsed thread in Larry and Elastic (#7366)
- Fix default keyservers (use keys.openpgp.org), add note about CORS (#7373, #7367) - Fix default keyservers (use keys.openpgp.org), add note about CORS (#7373, #7367)
- Password: Fix issue with Modoboa driver (#7372)
RELEASE 1.4.4 RELEASE 1.4.4
------------- -------------

@ -82,7 +82,7 @@ class rcube_modoboa_password
// Encode json with new password // Encode json with new password
$ret['username'] = $decoded[0]->username; $ret['username'] = $decoded[0]->username;
$ret['mailbox'] = $decoded[0]->mailbox; $ret['mailbox'] = $decoded[0]->mailbox;
$ret['role'] = $decoded[0]->role; $ret['role'] = $decoded[0]->role;
$ret['password'] = $passwd; // new password $ret['password'] = $passwd; // new password
$encoded = json_encode($ret); $encoded = json_encode($ret);

Loading…
Cancel
Save