Index: blog_theme.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/blogtheme/blog_theme.module,v
retrieving revision 1.8
diff -u -r1.8 blog_theme.module
--- blog_theme.module	27 Jul 2007 03:00:16 -0000	1.8
+++ blog_theme.module	27 Jul 2007 20:37:08 -0000
@@ -52,6 +52,16 @@
         $custom_theme = $account->theme && $themes[$account->theme]->status ? $account->theme : variable_get('theme_default', 'bluemarine');
       }
       break;
+      case 'comment':
+      $cid = arg(2);
+      $themes = list_themes();
+      $node = node_load(array('nid' => $cid));
+      if ($node->type == 'blog'){
+        $uid = $node->uid;
+        $account = user_load(array('uid' => $uid,'status' => 1)); 
+        $custom_theme = $account->theme && $themes[$account->theme]->status ? $account->theme : variable_get('theme_default', 'garland');
+      }
+      break;
     case 'image':
       $uid = arg(2);
       $themes = list_themes();
