diff --git a/application/helpers/expressions/em_manager_helper.php b/application/helpers/expressions/em_manager_helper.php index 92e4a8a1e7d..bf9425d8df5 100644 --- a/application/helpers/expressions/em_manager_helper.php +++ b/application/helpers/expressions/em_manager_helper.php @@ -898,7 +898,7 @@ public static function ConvertConditionsToRelevance($surveyId=NULL, $qid=NULL) else { // Conditions uses ' ' to mean not answered, but internally it is really stored as ''. Fix this - if ($value === '" "') { + if ($value === '" "' || $value == '""') { if ($row['method'] == '==') { $relOrList[] = "is_empty(" . $fieldname . ")";