summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-13 08:50:36 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-13 08:50:36 +0000
commit87c49cbfe6572a00f948dead55ff269b56056587 (patch)
treeb44e08ac1862283310d7434470ea110468ad495f /modules/system/system.module
parentea3c495a55c7f4a7684d4093b68121985c101e64 (diff)
downloadbrdo-87c49cbfe6572a00f948dead55ff269b56056587.tar.gz
brdo-87c49cbfe6572a00f948dead55ff269b56056587.tar.bz2
- Patch #133083 by Zen: 'Shortcut icon settings' not using proper FAPI value.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module7
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index a22f9acc4..1ca4fa194 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -2098,8 +2098,11 @@ function system_theme_settings($key = '') {
// Icon settings
if ((!$key) || in_array('toggle_favicon', $features)) {
- $form['favicon'] = array('#type' => 'fieldset', '#title' => t('Shortcut icon settings'));
- $form['favicon']['text'] = array('#value' => t('Your shortcut icon or \'favicon\' is displayed in the address bar and bookmarks of most browsers.'));
+ $form['favicon'] = array(
+ '#type' => 'fieldset',
+ '#title' => t('Shortcut icon settings'),
+ '#description' => t("Your shortcut icon or 'favicon' is displayed in the address bar and bookmarks of most browsers.")
+ );
$form['favicon']['default_favicon'] = array(
'#type' => 'checkbox',
'#title' => t('Use the default shortcut icon.'),