Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 256 → Rev 257

/trunk/plugins/raPages/101_change_password/plugin.inc.php
59,8 → 59,8
throw new OIDplusException('Passwords are not equal');
}
 
if (strlen($password1) < OIDplus::config()->minRaPasswordLength()) {
throw new OIDplusException('New password is too short. Minimum password length: '.OIDplus::config()->minRaPasswordLength());
if (strlen($password1) < OIDplus::config()->getValue('ra_min_password_length')) {
throw new OIDplusException('New password is too short. Minimum password length: '.OIDplus::config()->getValue('ra_min_password_length'));
}
 
$ra = new OIDplusRA($email);