diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-18 03:06:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-18 03:06:00 +0000 |
commit | 1488a397e903605b50dac46e09ecf669d074b3fb (patch) | |
tree | 0926ef8058420899269f2aa777993900504b1673 /modules/system/system.admin.inc | |
parent | 714e416e3ecea4c0d2320007f719d0e688822dfb (diff) | |
download | brdo-1488a397e903605b50dac46e09ecf669d074b3fb.tar.gz brdo-1488a397e903605b50dac46e09ecf669d074b3fb.tar.bz2 |
- Patch #569276 by lut4rp, reglogge, webkenny: Fixed the title and description for 'Error message display' in Logging and Errors.
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); |