Index: commentblock.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/commentblock/commentblock.module,v
retrieving revision 1.1.2.5
diff -u -p -r1.1.2.5 commentblock.module
--- commentblock.module	21 Feb 2010 01:30:35 -0000	1.1.2.5
+++ commentblock.module	11 Apr 2010 00:13:46 -0000
@@ -49,7 +49,10 @@ function commentblock_block($op, $delta 
       // Each content type gets it's own block.
       foreach ($types as $type => $name) {
         if (variable_get('comment_' . $type, COMMENT_NODE_DISABLED) == COMMENT_NODE_READ_WRITE) {
-          $blocks[$type] = array('info' => t('@type_name comment form', array('@type_name' => $name)));
+          $blocks[$type] = array(
+            'info' => t('@type_name comment form', array('@type_name' => $name)),
+            'cache' => BLOCK_NO_CACHE,
+          );
         }
       }
       return $blocks;
