Improved parameter checking
This commit is contained in:
parent
ad627ac451
commit
1d6bacc681
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* StatusNet, the distributed open-source microblogging tool
|
* StatusNet, the distributed open-source microblogging tool
|
||||||
*
|
*
|
||||||
* Superclass for plugins that do authentication and/or authorization
|
* Superclass for plugins that do authentication
|
||||||
*
|
*
|
||||||
* PHP version 5
|
* PHP version 5
|
||||||
*
|
*
|
||||||
|
|
|
@ -63,6 +63,8 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin
|
||||||
if(!isset($this->attributes['username'])){
|
if(!isset($this->attributes['username'])){
|
||||||
throw new Exception("must specify a username attribute");
|
throw new Exception("must specify a username attribute");
|
||||||
}
|
}
|
||||||
|
if($this->password_changeable && (! isset($this->attributes['password']) || !isset($this->password_encoding))){
|
||||||
|
throw new Exception("if password_changeable is set, the password attribute and password_encoding must also be specified");
|
||||||
}
|
}
|
||||||
|
|
||||||
//---interface implementation---//
|
//---interface implementation---//
|
||||||
|
|
Loading…
Reference in New Issue
Block a user