When the user needs to confirm their email address, the following drupal message is displayed: In order to confirm your email address, an email has been sent to you to you with confirmation instructions. Text "to you" appears twice. A patch follows.

Index: rpx.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/rpx/rpx.module,v
retrieving revision 1.8.2.52
diff -u -r1.8.2.52 rpx.module
--- rpx.module	13 Jun 2010 05:01:30 -0000	1.8.2.52
+++ rpx.module	23 Aug 2010 17:38:31 -0000
@@ -271,7 +271,7 @@
   elseif ($account->status) {
     // Require email confirmation
     drupal_mail('rpx', 'rpx_confirm_email', $account->mail, user_preferred_language($account), array('account' => $account));
-    drupal_set_message(t('In order to confirm your email address, an email has been sent to you to you with confirmation instructions.'));
+    drupal_set_message(t('In order to confirm your email address, an email has been sent to you with confirmation instructions.'));
   }
   else {
     _user_mail_notify('register_pending_approval', $account);

Comments

nrambeck’s picture

Assigned: Unassigned » nrambeck
Status: Active » Fixed

Thanks for the patch. It has been applied to the current dev branch.

Status: Fixed » Closed (fixed)

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