Index: modules/signup_status_mailer/signup_status_mailer.settings.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/signup_status/modules/signup_status_mailer/signup_status_mailer.settings.inc,v
retrieving revision 1.2
diff -u -p -r1.2 signup_status_mailer.settings.inc
--- modules/signup_status_mailer/signup_status_mailer.settings.inc	18 Aug 2009 00:16:53 -0000	1.2
+++ modules/signup_status_mailer/signup_status_mailer.settings.inc	18 Aug 2009 00:23:10 -0000
@@ -182,7 +182,12 @@ function _signup_status_mailer_settings_
       $default_body = isset($site_setting['body']) ? $site_setting['body'] : '';
       $form['email']['subject']['#disabled'] = TRUE;
       $form['email']['body']['#disabled'] = TRUE;
-      $form['notification']['#description'] = t('This message is configured to use the site-wide default text for this status. To modify the subject or body below, you must either select "Enabled (custom)" to override the defaults for this %node_type, or visit the <a href="@settings_url">site-wide Signup status mailer settings page</a>.', array('%node_type' => node_get_types('name', $node->type), '@settings_url' => url('admin/settings/signup_status/mailer')));
+      if (user_access(SIGNUP_STATUS_MAILER_ADMIN_PERM)) {
+        $form['notification']['#description'] = t('This message is configured to use the site-wide default text for this status. To modify the subject or body below, you must either select "Enabled (custom)" to override the defaults for this %node_type, or visit the <a href="@settings_url">site-wide Signup status mailer settings page</a>.', array('%node_type' => node_get_types('name', $node->type), '@settings_url' => url('admin/settings/signup_status/mailer')));
+      }
+      else {
+        $form['notification']['#description'] = t('This message is configured to use the site-wide default text for this status. To modify the subject or body below, you must select "Enabled (custom)" to override the defaults for this %node_type.', array('%node_type' => node_get_types('name', $node->type)));
+      }
     }
     else {
       // Using per-node values, if any.
