? .project ? .settings ? comment_filter_3.patch ? user-link-new-name-130108-4.patch ? user-link_0.patch ? sites/default/settings.php Index: modules/user/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.module,v retrieving revision 1.805 diff -u -p -r1.805 user.module --- modules/user/user.module 23 Jun 2007 21:35:08 -0000 1.805 +++ modules/user/user.module 23 Jun 2007 22:09:13 -0000 @@ -1418,7 +1418,7 @@ function user_register_submit($form, &$f } else { if ($admin && !$notify) { - drupal_set_message(t('Created a new user account. No e-mail has been sent.')); + drupal_set_message(t('Created a new user account for %name. No e-mail has been sent.', array('@url' => url("user/$account->uid"), '%name' => $account->name))); } else if (!variable_get('user_email_verification', TRUE) && $account->status && !$admin) { // No e-mail verification is required, create new user account, and login user immediately. @@ -1432,7 +1432,7 @@ function user_register_submit($form, &$f $op = $notify ? 'register_admin_created' : 'register_no_approval_required'; _user_mail_notify($op, $account, $pass); if ($notify) { - drupal_set_message(t('Password and further instructions have been e-mailed to the new user %user.', array('%user' => $name))); + drupal_set_message(t('Password and further instructions have been e-mailed to the new user %name.', array('@url' => url("user/$account->uid"), '%name' => $account->name))); } else { drupal_set_message(t('Your password and further instructions have been sent to your e-mail address.'));