=== includes/theme.inc ================================================================== --- includes/theme.inc (revision 72) +++ includes/theme.inc (local) @@ -787,6 +787,10 @@ return ''; } +function theme_drupal_stylesheet_import() { + return theme('stylesheet_import', 'misc/drupal.css'); +} + /** * Return a themed list of items. * === includes/common.inc ================================================================== --- includes/common.inc (revision 72) +++ includes/common.inc (local) @@ -74,7 +74,7 @@ $output = "\n"; $output .= "\n"; - $output .= theme('stylesheet_import', 'misc/drupal.css'); + $output .= theme('drupal_stylesheet_import'); return $output . drupal_set_html_head(); }