Hi,
There two errors syntax in views/metaboxes/registration.php (missing spaces) :
line 44 replace
<input type=”text” <?check_empty($this->settings[‘ldap_server’])?>
by
<input type=”text” <?php check_empty($this->settings[‘ldap_server’]) ?>
and line 56 replace
<input type=”text” <?check_empty($this->settings[‘ldap_basedn’])?>
by
<input type=”text” <?php check_empty($this->settings[‘ldap_basedn’]) ?>
Best regards,
Olivier