Changeset 2567 in subversion
- Timestamp:
- May 29, 2009 5:37:32 AM (4 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 1 deleted
- 4 edited
- 1 moved
-
program/steps/mail/attachments.inc (modified) (1 diff)
-
program/steps/mail/compose.inc (modified) (1 diff)
-
skins/default/images/icons/delete.png (moved) (moved from trunk/roundcubemail/skins/default/images/icons/remove-attachment.png)
-
skins/default/images/icons/trash.png (deleted)
-
skins/default/templates/compose.html (modified) (1 diff)
-
skins/default/templates/managefolders.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/steps/mail/attachments.inc
r2431 r2567 92 92 $_SESSION['compose']['attachments'][$id] = $attachment; 93 93 94 if ( is_file($icon = $CONFIG['skin_path'] . '/images/icons/remove-attachment.png')) {94 if (($icon = $_SESSION['compose']['deleteicon']) && is_file($icon)) { 95 95 $button = html::img(array( 96 96 'src' => $icon, -
trunk/roundcubemail/program/steps/mail/compose.inc
r2556 r2567 717 717 if (is_array($_SESSION['compose']['attachments'])) 718 718 { 719 if ($attrib['deleteicon']) 719 if ($attrib['deleteicon']) { 720 720 $button = html::img(array( 721 721 'src' => $CONFIG['skin_path'] . $attrib['deleteicon'], 722 722 'alt' => rcube_label('delete') 723 )); 723 )); 724 $_SESSION['compose']['deleteicon'] = $CONFIG['skin_path'] . $attrib['deleteicon']; 725 } 724 726 else 725 727 $button = Q(rcube_label('delete')); -
trunk/roundcubemail/skins/default/templates/compose.html
r2541 r2567 94 94 <div id="compose-attachments"> 95 95 <div id="attachment-title"><roundcube:label name="attachments" /></div> 96 <roundcube:object name="composeAttachmentList" deleteIcon="/images/icons/ remove-attachment.png"/ >96 <roundcube:object name="composeAttachmentList" deleteIcon="/images/icons/delete.png"/ > 97 97 <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" /></p> 98 98 </div> -
trunk/roundcubemail/skins/default/templates/managefolders.html
r2560 r2567 17 17 <roundcube:object name="foldersubscription" form="subscriptionform" id="subscription-table" 18 18 cellpadding="1" cellspacing="0" summary="Folder subscription table" class="records-table" 19 deleteIcon="/images/icons/ trash.png"19 deleteIcon="/images/icons/delete.png" 20 20 renameIcon="/images/icons/rename.png" /> 21 21 </div>
Note: See TracChangeset
for help on using the changeset viewer.
