Index: mail_edit_user.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/mail_edit/Attic/mail_edit_user.inc,v retrieving revision 1.1.2.2 diff -u -r1.1.2.2 mail_edit_user.inc --- mail_edit_user.inc 14 Sep 2009 00:29:43 -0000 1.1.2.2 +++ mail_edit_user.inc 16 May 2010 19:24:39 -0000 @@ -29,6 +29,7 @@ case 'status_blocked': case 'status_deleted': $tokens['!username']= "User's username"; + $tokens['!username_themed']= "User's username (themed)"; $tokens['!site']= 'Site name'; $tokens['!login_url']= 'One time login URL for password reset'; $tokens['!uri_brief']= "Website's URL without the leading http://"; @@ -48,6 +49,7 @@ $account = $mail['params']['account']; $language = $mail['language']; $tokens = array( + '!username_themed' => strip_tags(theme('username', $account, array('plain' => TRUE))), '!username' => $account->name, '!site' => variable_get('site_name', 'Drupal'), '!login_url' => user_pass_reset_url($account),