Index: ie_css_optimizer.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ie_css_optimizer/ie_css_optimizer.pages.inc,v
retrieving revision 1.5
diff -u -p -r1.5 ie_css_optimizer.pages.inc
--- ie_css_optimizer.pages.inc	11 Oct 2010 14:40:03 -0000	1.5
+++ ie_css_optimizer.pages.inc	29 Oct 2010 01:50:36 -0000
@@ -53,7 +53,8 @@ function _ie_css_optimizer_preprocess_pa
           if ($type == 'theme' && strpos($path, $theme_path) === 0) {
             if ($number_of_link_tags < 31) {
               // Implement the style using its own link tag.
+              drupal_add_css($path, $type, $media, FALSE);
               $vars['css'][$media][$type][$path] = FALSE;
               $number_of_link_tags++;
             }
             else {
@@ -76,6 +77,7 @@ function _ie_css_optimizer_preprocess_pa
     foreach (array_keys($vars['css']) as $media) {
       foreach (array_keys($vars['css'][$media]['module']) as $style) {
         if (strpos($style, $path) === 0) {
+          drupal_add_css($style, 'module', $media, FALSE);
           $vars['css'][$media]['module'][$style] = FALSE;
         }
       }
