Changeset 5084427 in github
- Timestamp:
- Jul 1, 2006 8:38:38 AM (7 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- b4b0817
- Parents:
- 25d8ba6
- Files:
-
- 6 edited
-
program/steps/mail/compose.inc (modified) (1 diff)
-
program/steps/mail/sendmail.inc (modified) (1 diff)
-
program/steps/mail/upload.inc (modified) (1 diff)
-
skins/default/images/icons/remove-attachment.png (modified) (previous)
-
skins/default/mail.css (modified) (2 diffs)
-
skins/default/templates/compose.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/steps/mail/compose.inc
ra894ba5 r5084427 627 627 { 628 628 if ($attrib['deleteicon']) 629 $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')); 629 $button = sprintf('<img src="%s%s" alt="%s" border="0" / style="padding-right:2px;vertical-align:middle">', 630 $CONFIG['skin_path'], 631 $attrib['deleteicon'], 632 rcube_label('delete')); 630 633 else 631 634 $button = rcube_label('delete'); 632 635 633 636 foreach ($_SESSION['compose']['attachments'] as $i => $a_prop) 634 $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']); 637 $out .= sprintf('<li id="%s"><a href="#" onclick="%s.command(\'remove-attachment\',\'%s\')" title="%s">%s</a>%s</li>', 638 $a_prop['name'], 639 $JS_OBJECT_NAME, 640 $a_prop['name'], 641 rcube_label('delete'), 642 $button, $a_prop['name']); 635 643 } 636 644 -
program/steps/mail/sendmail.inc
rb068a07d r5084427 115 115 $headers = array('Date' => date('D, j M Y G:i:s O'), 116 116 'From' => $identity_arr['string'], 117 'To' => $mailto);117 'To' => rcube_charset_convert($mailto, $input_charset, $message_charset)); 118 118 119 119 // additional recipients -
program/steps/mail/upload.inc
ra894ba5 r5084427 47 47 48 48 $button = sprintf('<img src="%s/images/icons/remove-attachment.png" alt="%s" border="0" style="padding-right:2px;vertical-align:middle">', $CONFIG['skin_path'], rcube_label('delete')); 49 $content = sprintf('<a href="#" onclick="%s.command(\\\'remove-attachment\\\',\\\'%s\\\')" title="%s">%s</a>%s',$JS_OBJECT_NAME, $_FILES['_attachments']['name'][$i], rcube_label('delete folder'), $button, $_FILES['_attachments']['name'][$i]);49 $content = sprintf('<a href="#" onclick="%s.command(\\\'remove-attachment\\\',\\\'%s\\\')" title="%s">%s</a>%s',$JS_OBJECT_NAME, $_FILES['_attachments']['name'][$i], rcube_label('delete'), $button, $_FILES['_attachments']['name'][$i]); 50 50 $response .= sprintf('parent.%s.add2attachment_list(\'%s\',\'%s\');',$JS_OBJECT_NAME, $_FILES['_attachments']['name'][$i], $content); 51 51 } -
skins/default/mail.css
ra894ba5 r5084427 594 594 font-weight: bold; 595 595 } 596 596 597 597 #attachment-list 598 598 { 599 599 margin: 0px; 600 padding: 0px 0px 0px 0px;600 padding: 0px 0px 0px 68px; 601 601 height: 18px; 602 602 list-style-image: none; 603 603 list-style-type: none; 604 background-color: #DFDFDF; 605 background-position: 52px 1px; 604 background: url(images/icons/attachment.png) 52px 1px no-repeat #DFDFDF; 606 605 border-bottom: 1px solid #FFFFFF; 607 606 } … … 826 825 } 827 826 827 #attachment-title 828 { 829 background: url(images/icons/attachment.png) top left no-repeat; 830 padding: 0px 0px 3px 22px; 831 } 832 828 833 #attachment-form 829 834 { -
skins/default/templates/compose.html
ra894ba5 r5084427 112 112 113 113 <div id="compose-attachments"> 114 <div ><roundcube:label name="attachments" /></div>114 <div id="attachment-title"><roundcube:label name="attachments" /></div> 115 115 <roundcube:object name="composeAttachmentList" deleteIcon="/images/icons/remove-attachment.png"/ > 116 116 <p><roundcube:button command="add-attachment" imagePas="/images/buttons/add_pas.png" imageSel="/images/buttons/add_sel.png" imageAct="/images/buttons/add_act.png" width="23" height="18" title="addattachment" />
Note: See TracChangeset
for help on using the changeset viewer.
