Skip to content
Snippets Groups Projects
Commit fa73975d authored by Jaap Jansma's avatar Jaap Jansma
Browse files

Merge pull request #81 from systopia/dev_fieldlabel_fallback

Fix bad field lables
parents 4154648d c38cc9bb
Branches
Tags
No related merge requests found
......@@ -41,7 +41,7 @@ class CRM_CivirulesConditions_Form_FieldValueComparison extends CRM_CivirulesCon
foreach ($fields as $field) {
$fieldKey = $key . $field['name'];
if (isset($field['title'])) {
$label = $field['title'];
$label = trim($field['title']);
} else {
$label = "";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment