context_fields_condition_field.inc line 52

    if (!isset($values)) {
      $this->getFieldValuesManually($entity_type, $entity);
    }

should be:

    if (!isset($values)) {
      $values = $this->getFieldValuesManually($entity_type, $entity);
    }
CommentFileSizeAuthor
#1 fix-bugs-1410142.patch1.15 KBpasqualle

Comments

pasqualle’s picture

Status: Active » Needs review
StatusFileSize
new1.15 KB

attached patch for my two issues ( this + #1410068: Problem with boolean values )