cleanup and coding style

This commit is contained in:
Arthur Schiwon 2013-10-07 18:03:54 +02:00
parent 87bd5a2bbb
commit e87b091536
1 changed files with 2 additions and 2 deletions

View File

@ -341,7 +341,8 @@ class Wizard extends LDAPUtility {
$dnRead = array();
$foundItems = array();
$maxEntries = 0;
if(!is_array($this->configuration->ldapBase) || !isset($this->configuration->ldapBase[0])) {
if(!is_array($this->configuration->ldapBase)
|| !isset($this->configuration->ldapBase[0])) {
return false;
}
$base = $this->configuration->ldapBase[0];
@ -355,7 +356,6 @@ class Wizard extends LDAPUtility {
}
$rr = $this->ldap->search($cr, $base, $filter, array($attr));
if(!$this->ldap->isResource($rr)) {
\OCP\Util::writeLog('user_ldap', 'Search failed, Base '.$base, \OCP\Util::DEBUG);
continue;
}
$entries = $this->ldap->countEntries($cr, $rr);