To fix your issue until there is a plugin update, open the plugin file: active-directory-integration/ad-integration.php
- Find the
generate_password
function:
public function generate_password($username, $password1, $password2) {
$password1 = $password2 = $this->_get_password();
}
- Change the function parameters (within brackets) from
$password1,
$password2to:
&$password1, &$password2` and save the file.
This happens because your PHP version is most likely >= 5.4