diff --git a/bakery.module b/bakery.module
index 99e524a..18c2bf2 100644
--- a/bakery.module
+++ b/bakery.module
@@ -201,7 +201,7 @@ function bakery_form_alter(&$form, $form_state, $form_id) {
       if (!variable_get('bakery_is_master', 0) && !user_access('administer users')) {
         $index = key($form);
         if (isset($form['account'])) {
-          drupal_set_message(t('You can change the name, mail, and password at <a href="!url">@master</a>.', array('!url' => check_url($form['_account']['#value']->init), '@master' => variable_get('bakery_master', 'http://drupal.org'))));
+          drupal_set_message(t('You can change the name, mail, and password at <a href="!url">@master</a>.', array('!url' => check_url($form['_account']['#value']->init), '@master' => variable_get('bakery_master', 'http://drupal.org'))), 'status', FALSE);
           $form['account']['#access'] = FALSE;
           $form['account']['name']['#access'] = FALSE;
           $form['account']['pass']['#access'] = FALSE;

