Index: sites/all/modules/contrib/field_collection/field_collection.module
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- sites/all/modules/contrib/field_collection/field_collection.module	(revision 594f3cc4ce6f5f792f892435139e1330b71ca3cd)
+++ sites/all/modules/contrib/field_collection/field_collection.module	(revision )
@@ -358,8 +358,12 @@
   $op = $op == 'view' ? 'view' : 'edit';
   // Access is determined by the entity and field containing the reference.
   $field = field_info_field($item->field_name);
+  if(!$account){
+      global $user;
+      $account = user_load($user->uid);
+  }
   $entity_access = entity_access($op == 'view' ? 'view' : 'update', $item->hostEntityType(), $item->hostEntity(), $account);
-  return $entity_access && field_access($op, $field, $item->hostEntityType(), $item->hostEntity(), $account);
+  return $entity_access || field_access($op, $field, $item->hostEntityType(), $item->hostEntity(), $account);
 }
 
 /**
