diff options
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 592ad8b3d..2fe7b5cc5 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1596,13 +1596,14 @@ function system_site_information_settings_submit($form, &$form_state) { function system_logging_settings() { $form['error_level'] = array( '#type' => 'radios', - '#title' => t('Display PHP messages'), + '#title' => t('Error messages to display'), '#default_value' => ERROR_REPORTING_DISPLAY_ALL, '#options' => array( ERROR_REPORTING_HIDE => t('None'), ERROR_REPORTING_DISPLAY_SOME => t('Errors and warnings'), ERROR_REPORTING_DISPLAY_ALL => t('All messages'), ), + '#description' => t('It is recommended that sites running on production environments do not display any errors.'), ); return system_settings_form($form); |