diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-05-22 19:56:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-05-22 19:56:00 +0000 |
commit | d81bfb45a0fccea344e2725385a67ccb894b2aa3 (patch) | |
tree | 2a8c7101ff2bb7e8af2ccf4062c1e7dbc23e8e49 | |
parent | 23e253617dd5742573ad319d33f9f3a303c191e3 (diff) | |
download | brdo-d81bfb45a0fccea344e2725385a67ccb894b2aa3.tar.gz brdo-d81bfb45a0fccea344e2725385a67ccb894b2aa3.tar.bz2 |
- Patch #137724 by JohnAlbin: empty favicon causes duplicate page requests.
-rw-r--r-- | includes/theme.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index f8f762185..442d91dc9 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -685,6 +685,9 @@ function theme_get_setting($setting_name, $refresh = FALSE) { elseif ($settings['favicon_path']) { $settings['favicon'] = base_path() . $settings['favicon_path']; } + else { + $settings['toggle_favicon'] = FALSE; + } } } |