diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-05 11:01:15 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-05 11:01:15 +0000 |
| commit | 407db3145ac65ef967107e15329e8a833cb520c6 (patch) | |
| tree | 0284671782bdf82068940034e67ed4e225033413 /roundcubemail/program/steps/mail/func.inc | |
| parent | eaff968037c6b4462a6a134b312a162385e95dd5 (diff) | |
- Fix displaying long header names in message headers table
- Fix translation labels names for Mail-Followup-to and Mail-Reply-To
git-svn-id: https://svn.roundcube.net/trunk@4184 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/func.inc')
| -rw-r--r-- | roundcubemail/program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc index a4f945fea..39551c1c0 100644 --- a/roundcubemail/program/steps/mail/func.inc +++ b/roundcubemail/program/steps/mail/func.inc @@ -972,7 +972,7 @@ function rcmail_message_headers($attrib, $headers=NULL) foreach ($plugin['output'] as $hkey => $row) { $table->add(array('class' => 'header-title'), Q($row['title'])); - $table->add(array('class' => $hkey, 'width' => "90%"), Q($row['value'], ($hkey == 'subject' ? 'strict' : 'show'))); + $table->add(array('class' => 'header '.$hkey), Q($row['value'], ($hkey == 'subject' ? 'strict' : 'show'))); } // all headers division |
