? 639618_notified_warning_mysql.patch Index: comment_notify.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/comment_notify/comment_notify.module,v retrieving revision 1.73.2.3 diff -u -p -r1.73.2.3 comment_notify.module --- comment_notify.module 10 Mar 2010 22:29:40 -0000 1.73.2.3 +++ comment_notify.module 10 Mar 2010 22:33:40 -0000 @@ -256,7 +256,7 @@ function comment_notify_comment($comment $notify = $comment['notify']; } // And then save the data. - db_query("INSERT INTO {comment_notify} (cid, notify, notify_hash) values (%d, %d, '%s')", $comment['cid'], $notify, $notify_hash); + db_query("INSERT INTO {comment_notify} (cid, notify, notify_hash, notified) values (%d, %d, '%s', 0)", $comment['cid'], $notify, $notify_hash); // And send notifications - the real purpose of the module. if ($comment['status'] == COMMENT_PUBLISHED) {