- Revert SORT=DISPLAY support, removed by mistake in r4160 (#1488327)

pull/1/head
alecpl 13 years ago
parent f6a7491fa1
commit 3c71c67118

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Revert SORT=DISPLAY support, removed by mistake (#1488327)
- Fix autoselect_host() for login (#1488297)
- Fix drafts update issues when edited from preview pane (#1488314)
- Changed license to GNU GPLv3+ with exceptions for skins & plugins

@ -1559,6 +1559,11 @@ class rcube_imap_generic
return new rcube_result_index($mailbox);
}
// RFC 5957: SORT=DISPLAY
if (($field == 'FROM' || $field == 'TO') && $this->getCapability('SORT=DISPLAY')) {
$field = 'DISPLAY' . $field;
}
// message IDs
if (!empty($add))
$add = $this->compressMessageSet($add);

Loading…
Cancel
Save