diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-12-13 17:52:43 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-01-14 16:33:02 +0100 |
commit | bb6bad6b3c1d8a2779945f206df952d7aa25ed62 (patch) | |
tree | 9cc597d7656e7d031f55043af47cc96f9d491649 | |
parent | e4b7c6ef1048b3a941abba19f867221350700e11 (diff) | |
download | nextcloud-server-bb6bad6b3c1d8a2779945f206df952d7aa25ed62.tar.gz nextcloud-server-bb6bad6b3c1d8a2779945f206df952d7aa25ed62.zip |
remove unused variables
-rw-r--r-- | apps/user_ldap/lib/wizard.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 9de203b2b2d..5de9f8e0a22 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -792,8 +792,8 @@ class Wizard extends LDAPUtility { \OCP\Util::writeLog('user_ldap', 'Wiz: Setting LDAP Options ', \OCP\Util::DEBUG); //set LDAP options - $a = $this->ldap->setOption($cr, LDAP_OPT_PROTOCOL_VERSION, 3); - $c = $this->ldap->setOption($cr, LDAP_OPT_NETWORK_TIMEOUT, self::LDAP_NW_TIMEOUT); + $this->ldap->setOption($cr, LDAP_OPT_PROTOCOL_VERSION, 3); + $this->ldap->setOption($cr, LDAP_OPT_NETWORK_TIMEOUT, self::LDAP_NW_TIMEOUT); if($tls) { $isTlsWorking = @$this->ldap->startTls($cr); if(!$isTlsWorking) { |