Fix removing contact photo using LDAP addressbook (#1488420)
Conflicts:
CHANGELOG
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix removing contact photo using LDAP addressbook (#1488420) |
| | | - Fix XSS vulnerability in message subject handling using Larry skin (#1488519) |
| | | - Fix handling of links with various URI schemes e.g. "skype:" (#1488106) |
| | | - Fix handling of links inside PRE elements on html to text conversion |
| | |
| | | else if ($val == '') { |
| | | // Field supplied is empty, verify that it is not required. |
| | | if (!in_array($fld, $this->prop['required_fields'])) { |
| | | // It is not, safe to clear. |
| | | $deletedata[$fld] = $old_data[$fld]; |
| | | // ...It is not, safe to clear. |
| | | // #1488420: Workaround "ldap_mod_del(): Modify: Inappropriate matching in..." |
| | | // jpegPhoto attribute require an array() here. It looks to me that it works for other attribs too |
| | | $deletedata[$fld] = array(); |
| | | //$deletedata[$fld] = $old_data[$fld]; |
| | | } |
| | | } |
| | | else { |