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

Backport from HEAD.
5.x
Neil Drumm 2007-04-18 04:08:40 +00:00
parent 533154a016
commit 73fd25a509
1 changed files with 5 additions and 2 deletions

View File

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