From 946688d05184001c75f1a3025882a52356d5f562 Mon Sep 17 00:00:00 2001 From: nilsteampassnet Date: Wed, 13 Feb 2019 19:13:21 +0100 Subject: [PATCH] 2.1.27 Fix for #2549 --- changelog.txt | 1 + sources/main.functions.php | 3 +++ 2 files changed, 4 insertions(+) diff --git a/changelog.txt b/changelog.txt index f6ba31f49..31b9e75f3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,6 @@ 2.1.27 34/ + #2549 Missing library #2534 Syntax error in share permissions 33/ diff --git a/sources/main.functions.php b/sources/main.functions.php index 105aac611..e35406e73 100644 --- a/sources/main.functions.php +++ b/sources/main.functions.php @@ -2573,6 +2573,9 @@ function ldapPosixAndWindows($username, $password, $SETTINGS) $ldap_suffix = "@".substr(html_entity_decode($username), 0, strpos(html_entity_decode($username), '\\')); $username = substr(html_entity_decode($username), strpos(html_entity_decode($username), '\\') + 1); } + + //load ClassLoader + include_once $SETTINGS['cpassman_dir'].'/sources/SplClassLoader.php'; $adldap = new SplClassLoader('adLDAP', '../includes/libraries/LDAP'); $adldap->register();