- Patch #137724 by JohnAlbin: empty favicon causes duplicate page requests.

6.x
Dries Buytaert 2007-05-22 19:56:00 +00:00
parent 23e253617d
commit d81bfb45a0
1 changed files with 3 additions and 0 deletions

View File

@ -685,6 +685,9 @@ function theme_get_setting($setting_name, $refresh = FALSE) {
elseif ($settings['favicon_path']) { elseif ($settings['favicon_path']) {
$settings['favicon'] = base_path() . $settings['favicon_path']; $settings['favicon'] = base_path() . $settings['favicon_path'];
} }
else {
$settings['toggle_favicon'] = FALSE;
}
} }
} }