From 1488a397e903605b50dac46e09ecf669d074b3fb Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 18 Jan 2010 03:06:00 +0000 Subject: - Patch #569276 by lut4rp, reglogge, webkenny: Fixed the title and description for 'Error message display' in Logging and Errors. --- modules/system/system.admin.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/system/system.admin.inc') 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); -- cgit v1.2.3