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 12 May 2010 20:59:09 -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://"; @@ -49,6 +50,7 @@ $language = $mail['language']; $tokens = array( '!username' => $account->name, + '!username_themed' => check_plain(theme('username', $account->name)), '!site' => variable_get('site_name', 'Drupal'), '!login_url' => user_pass_reset_url($account), '!uri_brief' => substr($base_url, strlen('http://')),