diff --git a/sites/all/modules/contrib/og_workflow/og_workflow_access/og_workflow_access.module b/sites/all/modules/contrib/og_workflow/og_workflow_access/og_workflow_access.module
index 249a956..d5b864c 100644
--- a/sites/all/modules/contrib/og_workflow/og_workflow_access/og_workflow_access.module
+++ b/sites/all/modules/contrib/og_workflow/og_workflow_access/og_workflow_access.module
@@ -204,6 +204,7 @@ function og_workflow_access_node_access_explain($row) {
  * Implements hook_node_access().
  */
 function og_workflow_access_node_access($node, $op, $account) {
+  if (workflow_get_workflow_node_by_nid($node->nid)) {
     if (is_string($node)) {
       // We cannot decide about node types in general
       return NODE_ACCESS_IGNORE;
@@ -233,6 +234,7 @@ function og_workflow_access_node_access($node, $op, $account) {
     }
     return NODE_ACCESS_IGNORE;
   }
+}
 
 
 /**
