Changeset b4fa591 in github
- Timestamp:
- Aug 29, 2009 2:48:54 PM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 0e2b643
- Parents:
- e83f035
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_ldap.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
re83f035 rb4fa591 2 2 =========================== 3 3 4 - Fix saving empty values in LDAP contact data (#1485781) 4 5 - Fix LDAP contact update when RDN field is changed (#1485788) 5 6 - Fix LDAP attributes case senitivity problems (#1485830) -
program/include/rcube_ldap.php
re83f035 rb4fa591 414 414 foreach ($save_cols as $col => $val) { 415 415 $fld = $this->_map_field($col); 416 if ($fld != '') {416 if ($fld && $val) { 417 417 // The field does exist, add it to the entry. 418 418 $newentry[$fld] = $val; … … 458 458 foreach ($save_cols as $col => $val) { 459 459 $fld = $this->_map_field($col); 460 if ($fld != '') {460 if ($fld) { 461 461 // The field does exist compare it to the ldap record. 462 462 if ($record[$col] != $val) {
Note: See TracChangeset
for help on using the changeset viewer.
