diff options
author | thomascube <thomas@roundcube.net> | 2006-07-01 12:38:38 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-07-01 12:38:38 +0000 |
commit | 50844277ca2ce9b98f5d732b07ffe7a4627ff72c (patch) | |
tree | 5fe05ba352d2a2d3b9a574d3df459a3c812e1914 /program/steps/mail/compose.inc | |
parent | 25d8ba63b3c4831050e5d190cd42cf2b0b0f3a30 (diff) |
Changed label and icon for attachment removal and some styles
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r-- | program/steps/mail/compose.inc | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 6d4cf9a61..64b0d6364 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -626,12 +626,20 @@ function rcmail_compose_attachment_list($attrib) if (is_array($_SESSION['compose']['attachments'])) { if ($attrib['deleteicon']) - $button = sprintf('<img src="%s%s" alt="%s" border="0" / style="padding-right:2px;vertical-align:middle">', $CONFIG['skin_path'], $attrib['deleteicon'], rcube_label('delete')); + $button = sprintf('<img src="%s%s" alt="%s" border="0" / style="padding-right:2px;vertical-align:middle">', + $CONFIG['skin_path'], + $attrib['deleteicon'], + rcube_label('delete')); else $button = rcube_label('delete'); foreach ($_SESSION['compose']['attachments'] as $i => $a_prop) - $out .= sprintf('<li id="%s"><a href="#" onclick="%s.command(\'remove-attachment\',\'%s\')" title="%s">%s</a>%s</li>', $a_prop['name'], $JS_OBJECT_NAME, $a_prop['name'], rcube_label('deletefolder'), $button, $a_prop['name']); + $out .= sprintf('<li id="%s"><a href="#" onclick="%s.command(\'remove-attachment\',\'%s\')" title="%s">%s</a>%s</li>', + $a_prop['name'], + $JS_OBJECT_NAME, + $a_prop['name'], + rcube_label('delete'), + $button, $a_prop['name']); } $OUTPUT->add_script(sprintf("%s.gui_object('attachmentlist', '%s');", $JS_OBJECT_NAME, $attrib['id'])); |