- Patch #133083 by Zen: 'Shortcut icon settings' not using proper FAPI value.

6.x
Dries Buytaert 2007-04-13 08:50:36 +00:00
parent ea3c495a55
commit 87c49cbfe6
1 changed files with 5 additions and 2 deletions

View File

@ -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.'),