- Patch #133083 by Zen: 'Shortcut icon settings' not using proper FAPI value.
Backport from HEAD.5.x
parent
533154a016
commit
73fd25a509
|
@ -2046,8 +2046,11 @@ function system_theme_settings($key = '') {
|
||||||
|
|
||||||
// Icon settings
|
// Icon settings
|
||||||
if ((!$key) || in_array('toggle_favicon', $features)) {
|
if ((!$key) || in_array('toggle_favicon', $features)) {
|
||||||
$form['favicon'] = array('#type' => 'fieldset', '#title' => t('Shortcut icon settings'));
|
$form['favicon'] = array(
|
||||||
$form['favicon']['text'] = array('#value' => t('Your shortcut icon or \'favicon\' is displayed in the address bar and bookmarks of most browsers.'));
|
'#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(
|
$form['favicon']['default_favicon'] = array(
|
||||||
'#type' => 'checkbox',
|
'#type' => 'checkbox',
|
||||||
'#title' => t('Use the default shortcut icon.'),
|
'#title' => t('Use the default shortcut icon.'),
|
||||||
|
|
Loading…
Reference in New Issue