Changeset 4d54cfe in github
- Timestamp:
- Sep 18, 2009 9:04:16 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- df7d6f5
- Parents:
- 915e3d1
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
plugins/new_user_identity/new_user_identity.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r78925f8f r4d54cfe 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) -
plugins/new_user_identity/new_user_identity.php
rcc97ea0 r4d54cfe 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.
