Index: comment_notify.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/comment_notify/comment_notify.module,v retrieving revision 1.74 diff -u -p -r1.74 comment_notify.module --- comment_notify.module 18 Nov 2009 18:05:19 -0000 1.74 +++ comment_notify.module 17 Feb 2010 23:37:13 -0000 @@ -304,7 +304,7 @@ function comment_notify_form_alter(&$for // Only show the node followup UI if the user has permission to create nodes. $nodes = FALSE; foreach (node_type_get_names() as $type) { - if (user_access('create '. $type .' content')) { + if (node_access('create', $type)) { $nodes = TRUE; break; }