summaryrefslogtreecommitdiff
path: root/modules/user/user.module
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-07-11 19:59:11 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-07-11 19:59:11 +0000
commite4c7378ef3cadf005e15caa39933f6fec71e5852 (patch)
tree454ec1462869a1e0219124d133acf0d887058ffb /modules/user/user.module
parent38a8d04f5117488217c4ab7465ffa150f970f77e (diff)
downloadbrdo-e4c7378ef3cadf005e15caa39933f6fec71e5852.tar.gz
brdo-e4c7378ef3cadf005e15caa39933f6fec71e5852.tar.bz2
#158289 by merlinofchaos: Remove paragraph tag from drupal_set_message()
Diffstat (limited to 'modules/user/user.module')
-rw-r--r--modules/user/user.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index 253141664..4c5915c09 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -1411,7 +1411,7 @@ function user_register_submit($form, &$form_state) {
// The first user may login immediately, and receives a customized welcome e-mail.
if ($account->uid == 1) {
- drupal_set_message(t('<p>Welcome to Drupal. You are now logged in as user #1, which gives you full control over your website.</p>'));
+ drupal_set_message(t('Welcome to Drupal. You are now logged in as user #1, which gives you full control over your website.'));
if (variable_get('user_email_verification', TRUE)) {
drupal_set_message(t('</p><p> Your password is <strong>%pass</strong>. You may change your password below.</p>', array('%pass' => $pass)));
}