diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-04-29 03:57:21 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-04-29 03:57:21 +0000 |
commit | a703b3ee8ae84ccdb9023492f93b8ea5a0fb9cf7 (patch) | |
tree | 24c68a942da1debc9bb7d6d1fb917684e1959d78 /modules/update/update.settings.inc | |
parent | de7635bf833e8df844fa728d0c93b9ff5b0daa81 (diff) | |
download | brdo-a703b3ee8ae84ccdb9023492f93b8ea5a0fb9cf7.tar.gz brdo-a703b3ee8ae84ccdb9023492f93b8ea5a0fb9cf7.tar.bz2 |
#431148 by pwolanin: Make it easier to visually distinguish between security updates and regular updates.
Diffstat (limited to 'modules/update/update.settings.inc')
-rw-r--r-- | modules/update/update.settings.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/update/update.settings.inc b/modules/update/update.settings.inc index 142ff5216..e67f6ba7f 100644 --- a/modules/update/update.settings.inc +++ b/modules/update/update.settings.inc @@ -34,13 +34,13 @@ function update_settings() { $form['update_notification_threshold'] = array( '#type' => 'radios', - '#title' => t('Notification threshold'), + '#title' => t('E-mail notification threshold'), '#default_value' => variable_get('update_notification_threshold', 'all'), '#options' => array( 'all' => t('All newer versions'), 'security' => t('Only security updates'), ), - '#description' => t('If there are updates available of Drupal core or any of your installed modules and themes, your site will print an error message on the <a href="@status_report">status report</a>, the <a href="@modules_page">modules page</a>, and the <a href="@themes_page">themes page</a>. You can choose to only see these error messages if a security update is available, or to be notified about any newer versions.', array('@status_report' => url('admin/reports/status'), '@modules_page' => url('admin/build/modules'), '@themes_page' => url('admin/build/themes'))) + '#description' => t('You can choose to send e-mail only if a security update is available, or to be notified about all newer versions. If there are updates available of Drupal core or any of your installed modules and themes, your site will always print a message on the <a href="@status_report">status report</a> page, and will also display an error message on administration pages if there is a security update.', array('@status_report' => url('admin/reports/status'))) ); $form = system_settings_form($form, FALSE); |