From 4b207d20523b0c7df7b7c07e03d55968f8991308 Mon Sep 17 00:00:00 2001 From: Jaime Perez Crespo <jaime.perez@uninett.no> Date: Wed, 14 Oct 2015 21:54:25 +0200 Subject: [PATCH] Fix undefined properties in the Negotiate class. --- modules/negotiate/lib/Auth/Source/Negotiate.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/modules/negotiate/lib/Auth/Source/Negotiate.php b/modules/negotiate/lib/Auth/Source/Negotiate.php index 6f745e1c1..060e8e86f 100644 --- a/modules/negotiate/lib/Auth/Source/Negotiate.php +++ b/modules/negotiate/lib/Auth/Source/Negotiate.php @@ -16,6 +16,20 @@ class sspmod_negotiate_Auth_Source_Negotiate extends SimpleSAML_Auth_Source { private $config; protected $ldap = NULL; + protected $backend = ''; + protected $hostname = ''; + protected $port = 389; + protected $referrals = true; + protected $enableTLS = false; + protected $debugLDAP = false; + protected $timeout = 30; + protected $keytab = ''; + protected $base = array(); + protected $attr = 'uid'; + protected $subnet = null; + protected $admin_user = null; + protected $admin_pw = null; + protected $attributes = null; /** * Constructor for this authentication source. -- GitLab