diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-04-13 08:50:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-04-13 08:50:36 +0000 |
commit | 87c49cbfe6572a00f948dead55ff269b56056587 (patch) | |
tree | b44e08ac1862283310d7434470ea110468ad495f /modules/system | |
parent | ea3c495a55c7f4a7684d4093b68121985c101e64 (diff) | |
download | brdo-87c49cbfe6572a00f948dead55ff269b56056587.tar.gz brdo-87c49cbfe6572a00f948dead55ff269b56056587.tar.bz2 |
- Patch #133083 by Zen: 'Shortcut icon settings' not using proper FAPI value.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 7 |
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.'), |