Changeset 3099 in subversion


Ignore:
Timestamp:
Nov 4, 2009 5:03:55 AM (4 years ago)
Author:
alec
Message:
  • fix replyto and cc cols css issue (#1486276) + handle their values as in from/to
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/steps/mail/func.inc

    r3058 r3099  
    307307    foreach ($a_show_cols as $col) 
    308308      { 
    309       if ($col=='from' || $col=='to') 
     309      if (in_array($col, array('from', 'to', 'cc', 'replyto'))) 
    310310        $cont = Q(rcmail_address_string($header->$col, 3, false, $attrib['addicon']), 'show'); 
    311311      else if ($col=='subject') 
     
    428428    foreach ($a_show_cols as $col) 
    429429      { 
    430       if ($col=='from' || $col=='to') 
     430      if (in_array($col, array('from', 'to', 'cc', 'replyto'))) 
    431431        $cont = Q(rcmail_address_string($header->$col, 3), 'show'); 
    432432      else if ($col=='subject') 
  • trunk/roundcubemail/skins/default/mail.css

    r3079 r3099  
    776776 
    777777#messagelist tr td.from, 
    778 #messagelist tr td.to 
     778#messagelist tr td.to, 
     779#messagelist tr td.cc, 
     780#messagelist tr td.replyto 
    779781{ 
    780782  width: 180px; 
Note: See TracChangeset for help on using the changeset viewer.