Changeset 5084427 in github for program/steps/mail/compose.inc


Ignore:
Timestamp:
Jul 1, 2006 8:38:38 AM (7 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
b4b0817
Parents:
25d8ba6
Message:

Changed label and icon for attachment removal and some styles

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/steps/mail/compose.inc

    ra894ba5 r5084427  
    627627    { 
    628628    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')); 
    630633    else 
    631634      $button = rcube_label('delete'); 
    632635 
    633636    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']);  
    635643    } 
    636644 
Note: See TracChangeset for help on using the changeset viewer.