diff --git a/modules/callbacks.inc b/modules/callbacks.inc
index 3865efd..2f2c0f1 100644
--- a/modules/callbacks.inc
+++ b/modules/callbacks.inc
@@ -781,6 +781,9 @@ function entity_metadata_comment_access($op, $entity = NULL, $account = NULL) {
   if (user_access('access comments', $account) && $op == 'view') {
     return TRUE;
   }
+  if (user_access('post comments', $account) && $op == 'create') {
+    return TRUE;
+  }
   return FALSE;
 }
 
