diff --git a/template.php b/template.php index 867f4b7..b2cdb81 100644 --- a/template.php +++ b/template.php @@ -308,9 +308,10 @@ function aurora_preprocess_user_profile_category(&$variables) { */ function aurora_css_alter(&$css) { // Path to the theme's CSS directory. - $dir = drupal_get_path('theme', 'html5') . '/css'; + $dir = drupal_get_path('theme', 'aurora') . '/css'; - // Swap out aggregator.css with the aggregator.theme.css provided by this theme. + // Swap out aggregator.css with the aggregator.theme.css provided by this + // theme. $aggregator = drupal_get_path('module', 'aggregator'); if (isset($css[$aggregator . '/aggregator.css'])) { $css[$aggregator . '/aggregator.css']['data'] = $dir . '/aggregator/aggregator.theme.css';