diff options
| author | richs <richs@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-07-03 20:32:05 +0000 |
|---|---|---|
| committer | richs <richs@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-07-03 20:32:05 +0000 |
| commit | 999127e2f59271307aa6b8104180ab0a004e9c2e (patch) | |
| tree | 91cf8e37086fd0319ffdfd92d05b256d63b8d75d | |
| parent | 92fd6096c3169a48abbe2b36b268438196098053 (diff) | |
Correction for FF/whitespace workaround
git-svn-id: https://svn.roundcube.net/trunk@273 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/steps/mail/func.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc index 4e88871cf..261cbdd25 100644 --- a/roundcubemail/program/steps/mail/func.inc +++ b/roundcubemail/program/steps/mail/func.inc @@ -436,8 +436,8 @@ function rcmail_message_list($attrib) else if ($col=='subject') { $cont = rep_specialchars_output($IMAP->decode_header($header->$col), 'html', 'all'); - // firefox/mozilla workaround to pad subject with content so that whitespace in rows responds to drag+drop - $cont .= '<img src="http://www.whidbey.com/roundcube/roundcubemail/skins/default/images/cleardot.png" height="1" width="1000">'; + // firefox/mozilla temporary workaround to pad subject with content so that whitespace in rows responds to drag+drop + $cont .= sprintf('<img src="%s%s" height="11" width="1000">', $skin_path, "/images/cleardot.png"); } else if ($col=='size') $cont = show_bytes($header->$col); |
