? comment_notify.module.patch
? php_object_array_error_191313.patch
Index: comment_notify.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_notify/comment_notify.module,v
retrieving revision 1.1.4.3
diff -u -p -r1.1.4.3 comment_notify.module
--- comment_notify.module	3 Nov 2007 12:39:02 -0000	1.1.4.3
+++ comment_notify.module	6 Jan 2008 10:43:22 -0000
@@ -332,6 +332,7 @@ function comment_notify_user($type, &$ed
 }
 
 function _comment_notify_mailalert2($comment) {
+  $comment = (object)$comment;
   global $locale;
   global $base_url;
 
@@ -340,13 +341,12 @@ function _comment_notify_mailalert2($com
     $languages = locale_supported_languages();
     $languages = $languages['name'];
   }
-    $nid = $comment->nid;
-    $cid = $comment->cid;
-    $commname= $comment->name;
-    $commtext= $comment->comment;
-    $commsubj= $comment->subject;
-   
-    
+
+  $nid = $comment->nid;
+  $cid = $comment->cid;
+  $commname= $comment->name;
+  $commtext= $comment->comment;
+  $commsubj= $comment->subject;
 
     $node = node_load($nid);
 #    print_r($node);
