Closed (fixed)
Project:
Printer, email and PDF versions
Version:
6.x-1.3
Component:
Code
Priority:
Minor
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
23 Feb 2009 at 22:44 UTC
Updated:
19 Mar 2009 at 01:00 UTC
Hi,
I like the module really, it's great. That's why I'm writing to 'ya. If you navigate to the "printmail" page there are three input boxes ("Send e-mail", "Clear form" and "Cancel"), the "Clear form" and the "Cancel" button are sticked together 'cause of a missing space in "print_mail.inc". As I have seen you had to create the <input type="reset" box by yourself, that's why Drupal isn't creating the necessary space to seperate the two input boxes from each other ...
/**
* @file: print_mail.inc
*/
// line 96
$form['btn_submit'] = array(
'#name' => 'submit',
'#type' => 'submit',
'#value' => t('Send e-mail'),
);
$form['btn_clear'] = array(
'#type' => 'markup',
'#value' => '<input type="reset" name="clear" value="'. t('Clear form') .'" class="form-submit" /> ',
);
$form['btn_cancel'] = array(
'#name' => 'cancel',
'#type' => 'submit',
'#value' => t('Cancel'),
);
// line 111
I made the space right behind class="form-submit", can you see it. :D
Kindest regards
Fleshgrinder
Comments
Comment #1
jcnventuraThanks,
I will take a look at it soon.
João
Comment #2
jcnventuraJust committed your code to CVS.
João