--- comment_subscribe (2)/comment_subscribe.module	2008-07-28 05:31:25.000000000 -0400
+++ comment_subscribe/comment_subscribe.module	2008-09-05 12:44:44.000000000 -0400
@@ -422,9 +422,9 @@
 	 
    if($level != 1) {
      $prvlevel = $level - 1;
-		 $join .= " join comments c".$level." on c".$prvlevel.".pid=c".$level.".cid";
+		 $join .= " join {comments} c".$level." on c".$prvlevel.".pid=c".$level.".cid";
    }
-	 $sql = "select c1.cid, concat('0,', ".$ifcondition." ) as parents from comments c1  ".$join;
+	 $sql = "select c1.cid, concat('0,', ".$ifcondition." ) as parents from {comments} c1  ".$join;
  	 $result = db_fetch_array(db_query($sql));
    if($result != NULL ) {
 		 $origsql = $sql;
@@ -438,8 +438,8 @@
   $sql = str_replace('join','left join',$origsql);
 	$sql = str_replace('as parents','as parents,0 as subscribe,0 as subscribenode',$sql);
 	/*$origjoin = str_replace('join','left join',$origjoin);*/
-  $sql = "insert into z_commentsubscribe (cid, parents, subscribe, subscribenode) ".$sql."
-	left join z_commentsubscribe cs on c1.cid = cs.cid where cs.subscribe is null";
+  $sql = "insert into {z_commentsubscribe} (cid, parents, subscribe, subscribenode) ".$sql."
+	left join {z_commentsubscribe} cs on c1.cid = cs.cid where cs.subscribe is null";
 	db_query($sql);
 	/*  db_query("update comments c1 $origjoin join z_commentsubscribe cs on c1.cid = cs.cid set cs.parents = concat('0,', ".$origifcond." )");*/
 }
