﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
1487758,new_user_identity plugin breaks login for new users,brandond,,"The new_user_identity plugin attempts to set private attributes of the rcube_ldap object, causing a PHP error that prevents the user from logging in.

The plugin does:
{{{
$match = $rcmail->config->get('new_user_identity_match');
$ldap = $rcmail->get_address_book($addressbook);
$ldap->prop['search_fields'] = array($match);
$results = $ldap->search($match, $args['user'], TRUE);
}}}

which results in the following error due to the prop array being private:
{{{
[01-Feb-2011 13:34:09] PHP Fatal error:  Cannot access protected property rcube_ldap::$prop in /usr/share/roundcubemail/plugins/new_user_identity/new_user_identity.php on line 38
}}}

",Bugs,closed,2,0.6-beta,Plugins,git-master,normal,fixed,new_user_identity,m.duelli@…
