Projects
Kolab:16:Enterprise
kolab-syncroton
0002-Only-call-kolab_auth-ldap_close-if-the-met...
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0002-Only-call-kolab_auth-ldap_close-if-the-method-actual.patch of Package kolab-syncroton (Revision 5)
Currently displaying revision
5
,
Show latest
From 661badaa42b1a83cc2430d959d09bf8db4716ee1 Mon Sep 17 00:00:00 2001 From: "Jeroen van Meeuwen (Kolab Systems)" <vanmeeuwen@kolabsys.com> Date: Fri, 24 Feb 2017 09:34:50 +0100 Subject: [PATCH 2/2] Only call kolab_auth::ldap_close() if the method actually exists --- lib/kolab_sync.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/kolab_sync.php b/lib/kolab_sync.php index 01bb0c7..150f8ec 100644 --- a/lib/kolab_sync.php +++ b/lib/kolab_sync.php @@ -207,7 +207,9 @@ class kolab_sync extends rcube // Close LDAP connection from kolab_auth plugin if (class_exists('kolab_auth', false)) { - kolab_auth::ldap_close(); + if (method_exists('kolab_auth', 'ldap_close')) { + kolab_auth::ldap_close(); + } } } else { -- 2.9.3
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.