Index: comment_display.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_display/comment_display.module,v
retrieving revision 1.1
diff -u -p -r1.1 comment_display.module
--- comment_display.module	26 Oct 2008 15:20:04 -0000	1.1
+++ comment_display.module	9 Nov 2008 05:07:42 -0000
@@ -57,6 +57,11 @@ function comment_display_preprocess_page
   if (function_exists('comment_render') && !empty($vars['node']) && $vars['node']->comment) {
     $arg2 = arg(2);
     $vars['comments'] .= comment_render($vars['node'], ($arg2 && is_numeric($arg2) ? $arg2 : NULL));
+
+    // Reconstruct CSS and JS variables.
+    $vars['css'] = drupal_add_css();
+    $vars['styles'] = drupal_get_css();
+    $vars['scripts'] = drupal_get_js();
   }
 }
 
