Changeset 66e2bfa in github for program/steps/mail/compose.inc


Ignore:
Timestamp:
Jul 18, 2006 5:24:12 PM (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:
078adf9
Parents:
bac7d17
Message:

Added label tags to forms (Ticket #1483810)

File:
1 edited

Legend:

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

    r5084427 r66e2bfa  
    691691  } 
    692692 
     693 
    693694function rcmail_priority_selector($attrib) 
    694695  { 
     
    720721  list($form_start, $form_end) = get_form_tags($attrib); 
    721722  unset($attrib['form']); 
     723   
     724  if (!isset($attrib['id'])) 
     725    $attrib['id'] = 'receipt';   
    722726 
    723727  $attrib['name'] = '_receipt'; 
    724   $checkbox = new checkbox(array('name' => '_receipt', 'id' => 'receipt', 'value' => 1)); 
     728  $attrib['value'] = '1'; 
     729  $checkbox = new checkbox($attrib); 
    725730 
    726731  $out = $form_start ? "$form_start\n" : ''; 
Note: See TracChangeset for help on using the changeset viewer.