summaryrefslogtreecommitdiff
path: root/includes/theme.maintenance.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-04 07:04:21 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-04 07:04:21 +0000
commit24057c3d53a22373e0b575a36f49ab8e965b6934 (patch)
tree75793c721b5e81352355ee52ad5b7d43939500c9 /includes/theme.maintenance.inc
parent3fa324a1b5a6a7360216a88201f10b000915f574 (diff)
downloadbrdo-24057c3d53a22373e0b575a36f49ab8e965b6934.tar.gz
brdo-24057c3d53a22373e0b575a36f49ab8e965b6934.tar.bz2
#531476 by aaron and mfb: Add favicon mimetype as a theme setting to avoid expensive calls to file system.
Diffstat (limited to 'includes/theme.maintenance.inc')
-rw-r--r--includes/theme.maintenance.inc6
1 files changed, 1 insertions, 5 deletions
diff --git a/includes/theme.maintenance.inc b/includes/theme.maintenance.inc
index 2dacf27ab..20b2f6505 100644
--- a/includes/theme.maintenance.inc
+++ b/includes/theme.maintenance.inc
@@ -216,11 +216,7 @@ function template_preprocess_maintenance_page(&$variables) {
// Add favicon
if (theme_get_setting('toggle_favicon')) {
$favicon = theme_get_setting('favicon');
- $type = file_get_mimetype($favicon);
- // Use the genereic MIME type for favicons if no other was found.
- if ($type == 'application/octet-stream') {
- $type = 'image/x-icon';
- }
+ $type = theme_get_setting('favicon_mimetype');
drupal_add_html_head('<link rel="shortcut icon" href="' . check_url($favicon) . '" type="' . check_plain($type) . '" />');
}