diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-25 15:17:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-25 15:17:47 +0000 |
commit | 21eed1d5a8238a65b8f5ee607a6263c731f1296e (patch) | |
tree | 940ecc635ec36b6baafd9e5f82757bbaae5c6cf3 /modules | |
parent | 554a2808a3f337c5a3d578e9b53e6009f1491da6 (diff) | |
download | brdo-21eed1d5a8238a65b8f5ee607a6263c731f1296e.tar.gz brdo-21eed1d5a8238a65b8f5ee607a6263c731f1296e.tar.bz2 |
- Patch #80640 by stefan: consistent descriptions.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index cf1ff5a41..cadf534b9 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -519,7 +519,7 @@ function system_site_information_settings() { '#type' => 'textfield', '#title' => t('Default front page'), '#default_value' => variable_get('site_frontpage', 'node'), - '#description' => t('The home page displays content from this relative URL. If you are not using clean URLs, specify the part after "?q=". If unsure, specify "node".') + '#description' => t('The home page displays content from this relative URL. If you are not using clean URLs, specify the part after "<code>?q=</code>". If unsure, specify "node".') ); return system_settings_form($form); @@ -555,14 +555,14 @@ function system_error_reporting_settings() { '#type' => 'textfield', '#title' => t('Default 403 (access denied) page'), '#default_value' => variable_get('site_403', ''), - '#description' => t('This page is displayed when the requested document is denied to the current user. If you are not using clean URLs, specify the part after "?q=". If unsure, specify nothing.') + '#description' => t('This page is displayed when the requested document is denied to the current user. If you are not using clean URLs, specify the part after "<code>?q=</code>". If unsure, specify nothing.') ); $form['site_404'] = array( '#type' => 'textfield', '#title' => t('Default 404 (not found) page'), '#default_value' => variable_get('site_404', ''), - '#description' => t('This page is displayed when no other content matches the requested document. If you are not using clean URLs, specify the part after "?q=". If unsure, specify nothing.') + '#description' => t('This page is displayed when no other content matches the requested document. If you are not using clean URLs, specify the part after "<code>?q=</code>". If unsure, specify nothing.') ); $form['error_level'] = array( |