diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-11-04 09:39:19 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-11-04 09:39:19 +0100 |
commit | 26ecf2062c7a191f3cb85e5046eba2b10efa0821 (patch) | |
tree | 490476d5fd2d366ceca2c129071a3a834f836781 | |
parent | e89f080f09468d2b37c010ede8c2cba8e3bef139 (diff) | |
parent | 4e9a23dffe6fcb7473a9632747359bf94d7f7d67 (diff) | |
download | nextcloud-server-26ecf2062c7a191f3cb85e5046eba2b10efa0821.tar.gz nextcloud-server-26ecf2062c7a191f3cb85e5046eba2b10efa0821.zip |
Merge pull request #5656 from owncloud/fix-wizard-typo
Fix typo in LDAP wizard
* owncloud/fix-wizard-typo:
Excpetion->Exception
-rw-r--r-- | apps/user_ldap/lib/wizard.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 9b84c3d5a44..9428a98e29c 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -81,7 +81,7 @@ class Wizard extends LDAPUtility { } $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $rr = $this->ldap->search($cr, $base, $filter, array('dn')); if(!$this->ldap->isResource($rr)) { @@ -108,7 +108,7 @@ class Wizard extends LDAPUtility { $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $base = $this->configuration->ldapBase[0]; @@ -169,7 +169,7 @@ class Wizard extends LDAPUtility { } $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $base = $this->configuration->ldapBase[0]; @@ -222,7 +222,7 @@ class Wizard extends LDAPUtility { } $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $obclasses = array('posixGroup', 'group', '*'); @@ -274,7 +274,7 @@ class Wizard extends LDAPUtility { } $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $obclasses = array('group', 'posixGroup', '*'); @@ -302,7 +302,7 @@ class Wizard extends LDAPUtility { } $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $obclasses = array('inetOrgPerson', 'person', 'organizationalPerson', @@ -498,7 +498,7 @@ class Wizard extends LDAPUtility { } $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $base = $this->configuration->ldapBase[0]; $rr = $this->ldap->search($cr, $base, $filter, $possibleAttrs); @@ -534,7 +534,7 @@ class Wizard extends LDAPUtility { private function testBaseDN($base) { $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } //base is there, let's validate it. If we search for anything, we should @@ -556,7 +556,7 @@ class Wizard extends LDAPUtility { private function testMemberOf() { $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } if(!is_array($this->configuration->ldapBase) || !isset($this->configuration->ldapBase[0])) { @@ -616,7 +616,7 @@ class Wizard extends LDAPUtility { $filter .= '(|'; $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $base = $this->configuration->ldapBase[0]; foreach($cns as $cn) { @@ -890,7 +890,7 @@ class Wizard extends LDAPUtility { private function determineFeature($objectclasses, $attr, $dbkey, $confkey, $po = false) { $cr = $this->getConnection(); if(!$cr) { - throw new \Excpetion('Could not connect to LDAP'); + throw new \Exception('Could not connect to LDAP'); } $p = 'objectclass='; foreach($objectclasses as $key => $value) { |