From 1330892852ff4a0b3f5d54534af3e0eea887bc7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ja=CC=81n=20Ma=CC=81te=CC=81?= Date: Tue, 25 Mar 2014 19:24:49 +0100 Subject: [PATCH] fixed missing semicolons in drivers_ldap.php --- inc/drivers_ldap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/drivers_ldap.php b/inc/drivers_ldap.php index 7acc1382..8e5cb452 100644 --- a/inc/drivers_ldap.php +++ b/inc/drivers_ldap.php @@ -256,11 +256,11 @@ function getStaticLdap() { $ldapDrivers = new ldapDrivers($c->authenticate_hook['config']); if ($ldapDrivers->valid) { - $instance = $ldapDrivers + $instance = $ldapDrivers; } } else { - $ldapDrivers = $instance + $ldapDrivers = $instance; } return $ldapDrivers; }