Changeset 2967 in subversion
- Timestamp:
- Sep 18, 2009 9:04:16 AM (4 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
plugins/new_user_identity/new_user_identity.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r2959 r2967 2 2 =========================== 3 3 4 - Fix setting user name in 'new_user_identity' plugin (#1486137) 4 5 - Fix incorrect count of new messages in folder list when using multiple IMAP clients (#1485995) 5 6 - Fix all folders checking for new messages with disabled caching (#1486128) -
trunk/roundcubemail/plugins/new_user_identity/new_user_identity.php
r2401 r2967 20 20 * // new identity, match the user's login name against this field. 21 21 * $rcmail_config['new_user_identity_match'] = 'uid'; 22 *23 * // Use the value in this field to automatically set a new users's24 * // full name in their new identity.25 * $rcmail_config['new_user_identity_field'] = 'name';26 22 */ 27 23 class new_user_identity extends rcube_plugin … … 41 37 $results = $ldap->search($match, $args['user'], TRUE); 42 38 if (count($results->records) == 1) { 43 $args['user_name'] = $results->records[0][ $rcmail->config->get('new_user_identity_field')];39 $args['user_name'] = $results->records[0]['name']; 44 40 } 45 41 }
Note: See TracChangeset
for help on using the changeset viewer.
