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

jcnventura’s picture

Status: Active » Needs review

Thanks,

I will take a look at it soon.

João

jcnventura’s picture

Status: Needs review » Fixed

Just committed your code to CVS.

João

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.