Changeset 4152 in subversion


Ignore:
Timestamp:
Oct 28, 2010 3:34:27 AM (3 years ago)
Author:
alec
Message:
  • Add SORT=DISPLAY support (RFC 5957)
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r4151 r4152  
    5454- Fix handling of URLs with tilde (~) or semicolon (;) character (#1487087, #1487088) 
    5555- Plugin API: added 'contact_form' hook 
     56- Add SORT=DISPLAY support (RFC 5957) 
    5657 
    5758RELEASE 0.4.2 
  • trunk/roundcubemail/program/include/rcube_imap_generic.php

    r4143 r4152  
    10001000                return false; 
    10011001            } 
     1002 
     1003        // RFC 5957: SORT=DISPLAY 
     1004        if (($field == 'FROM' || $field == 'TO') && $this->getCapability('SORT=DISPLAY')) { 
     1005            $field = 'DISPLAY' . $field; 
     1006        } 
    10021007 
    10031008            // message IDs 
Note: See TracChangeset for help on using the changeset viewer.