summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2006-07-03 20:32:05 +0000
committersvncommit <devs@roundcube.net>2006-07-03 20:32:05 +0000
commit5f383dc98c40a6d3c230c81113b980fcac179ac4 (patch)
tree57ec2b5c84fbfd0cfea030cb75d4e755c02453eb
parentb4b081713ee88c9a7b2515d18c36bedf966641ce (diff)
Correction for FF/whitespace workaround
-rw-r--r--program/steps/mail/func.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 4e88871cf..261cbdd25 100644
--- a/program/steps/mail/func.inc
+++ b/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);