summaryrefslogtreecommitdiff
path: root/themes/bartik/template.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-10-05 19:59:10 +0000
committerDries Buytaert <dries@buytaert.net>2010-10-05 19:59:10 +0000
commitfacc581013f781bd7737d02700a5ffe2a253e5f3 (patch)
treea65b1bc47b368e420bb3238e75196acd5b471f88 /themes/bartik/template.php
parent0614a78538bcc91f620abb38a0366d6ecee9eb06 (diff)
downloadbrdo-facc581013f781bd7737d02700a5ffe2a253e5f3.tar.gz
brdo-facc581013f781bd7737d02700a5ffe2a253e5f3.tar.bz2
- Patch #769226 by Owen Barton, sun, effulgentsia, alanburke, bleen18, mfer: optimize JS/CSS aggregation for front-end performance and DX.
Diffstat (limited to 'themes/bartik/template.php')
-rw-r--r--themes/bartik/template.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/bartik/template.php b/themes/bartik/template.php
index 9132a9f0e..acc04a0f2 100644
--- a/themes/bartik/template.php
+++ b/themes/bartik/template.php
@@ -23,8 +23,8 @@ function bartik_preprocess_html(&$variables) {
}
// Add conditional stylesheets for IE
- drupal_add_css(path_to_theme() . '/css/ie.css', array('weight' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE)));
- drupal_add_css(path_to_theme() . '/css/ie6.css', array('weight' => CSS_THEME, 'browsers' => array('IE' => 'IE 6', '!IE' => FALSE)));
+ drupal_add_css(path_to_theme() . '/css/ie.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE), 'preprocess' => FALSE));
+ drupal_add_css(path_to_theme() . '/css/ie6.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'IE 6', '!IE' => FALSE), 'preprocess' => FALSE));
}
/**