From 0f30d33977f44e6198b0106557584f64c7980137 Mon Sep 17 00:00:00 2001 From: Floris Westerman Date: Thu, 26 Nov 2020 23:56:36 +0100 Subject: [PATCH] Added constructor to LDAP identities plugin Without the constructor, SnappyMail would crash when using custom language features. This is now resolved. --- plugins/ldap-identities/index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/ldap-identities/index.php b/plugins/ldap-identities/index.php index 300240dd1..64609aa7c 100644 --- a/plugins/ldap-identities/index.php +++ b/plugins/ldap-identities/index.php @@ -11,6 +11,8 @@ class LdapIdentitiesPlugin extends AbstractPlugin include_once __DIR__ . '/LdapIdentities.php'; include_once __DIR__ . '/LdapConfig.php'; include_once __DIR__ . '/LdapException.php'; + + parent::__construct(); } public function Init(): void