Enigma: Fix missing require statement for Crypt_GPG_KeyGenerator (#5641)

pull/5754/head
Aleksander Machniak 7 years ago
parent 4475037023
commit 4bc337c460

@ -4,6 +4,7 @@ CHANGELOG Roundcube Webmail
- Managesieve: Fix handling of scripts with nested rules (#5540)
- Fix variable substitution in ldap host for some use-cases, e.g. new_user_identity (#5544)
- Enigma: Fix PHP fatal error when decrypting a message with invalid signature (#5555)
- Enigma: Fix missing require statement for Crypt_GPG_KeyGenerator (#5641)
- Fix adding images to new identity signatures
- Fix rsync error handling in installto.sh script (#5562)
- Fix some advanced search issues with multiple addressbooks (#5572)

@ -281,6 +281,8 @@ class enigma_driver_gnupg extends enigma_driver
*/
public function gen_key($data)
{
require_once 'Crypt/GPG/KeyGenerator.php';
try {
$debug = $this->rc->config->get('enigma_debug');
$keygen = new Crypt_GPG_KeyGenerator(array(

Loading…
Cancel
Save