summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2013-12-13 17:52:43 +0100
committerArthur Schiwon <blizzz@owncloud.com>2014-01-14 16:33:02 +0100
commitbb6bad6b3c1d8a2779945f206df952d7aa25ed62 (patch)
tree9cc597d7656e7d031f55043af47cc96f9d491649
parente4b7c6ef1048b3a941abba19f867221350700e11 (diff)
downloadnextcloud-server-bb6bad6b3c1d8a2779945f206df952d7aa25ed62.tar.gz
nextcloud-server-bb6bad6b3c1d8a2779945f206df952d7aa25ed62.zip
remove unused variables
-rw-r--r--apps/user_ldap/lib/wizard.php4
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) {