Index: comment_notify.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/comment_notify/comment_notify.module,v retrieving revision 1.73 diff -u -p -r1.73 comment_notify.module --- comment_notify.module 17 Nov 2009 15:20:10 -0000 1.73 +++ comment_notify.module 17 Feb 2010 23:37:06 -0000 @@ -287,7 +287,7 @@ function comment_notify_user($type, &$ed // Only show the node followup UI if the user has permission to create nodes. $nodes = FALSE; foreach (node_get_types() as $type) { - if (user_access('create '. $type->type .' content')) { + if (node_access('create', $type->type)) { $nodes = TRUE; break; }