diff --git a/drupal/sites/default/boinc/modules/boincuser/boincuser_delete/boincuser_delete.module b/drupal/sites/default/boinc/modules/boincuser/boincuser_delete/boincuser_delete.module index fc0b6adff2..77df688176 100644 --- a/drupal/sites/default/boinc/modules/boincuser/boincuser_delete/boincuser_delete.module +++ b/drupal/sites/default/boinc/modules/boincuser/boincuser_delete/boincuser_delete.module @@ -137,8 +137,8 @@ function boincuser_delete_form_alter(&$form, $form_state, $form_id) { // Configure radio options $deleteoptions = array( - 'boincuser_delete_softdelete' => bts('Soft delete the account. Afterwards your account will be disabled, and all posts/comments will be attributed to the Anonymous User. However, your user profile will be deleted, your host information deleted, and you will be removed from any team you are a member of.', array(), NULL, 'boinc:delete-user-account'), - 'boincuser_delete_delete' => bts('Delete the account. Afterwards your account will be deleted, and all posts/comments will be attributed to the Anonymous User. Your user profile will be deleted.', array(), NULL, 'boinc:delete-user-account'), + 'boincuser_delete_softdelete' => bts('Soft delete the account. Afterwards your account will be disabled, and all posts/comments will be attributed to the Anonymous User. However, your user profile will be deleted, your host information will be deleted, and you will be removed from any team you are a member of.', array(), NULL, 'boinc:delete-user-account'), + 'boincuser_delete_delete' => bts('Delete the account. Afterwards your account will be deleted, and all posts/comments will be attributed to the Anonymous User. Your user profile will be deleted, and your host information will be deleted.', array(), NULL, 'boinc:delete-user-account'), ); $dtypes = variable_get('boincuser_delete_type', 'user_decides'); @@ -166,7 +166,7 @@ function boincuser_delete_form_alter(&$form, $form_state, $form_id) { $form['main']['help'] = array( '#value' => bts( "
Instructions: In order to delete your account, you must provide your password below. You will then be sent an email to the email address on record, with a one-time token that expires in 24-hours. Clicking on this link will bring you to a second form where you must enter your password again. After doing so your account will be deleted.
" . - "If necessary, you may !link first before deleting your addcount. But you must wait seven (7) days after an email address change before you may delete your account.
", + "If necessary, you may !link first before deleting your account. But you must wait seven (7) days after an email address change before you may delete your account.
", array( '!link' => l(bts('change your email address', array(), NULL, 'boinc:delete-user-account'), '/account/info/edit'), ), NULL, 'boinc:delete-user-account'),