Skip to content

Commit

Permalink
fix(checkboxesfield): back to BR
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Oct 24, 2022
1 parent 5203d5a commit 56d1e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/field/checkboxesfield.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public function getValueForTargetText($domain, $richText): ?string {
}

if ($richText) {
$value = '<p>' . implode('</p><p>', $value) . '</p>';
$value = implode('<br />', $value);
} else {
$value = implode(', ', $value);
}
Expand Down

0 comments on commit 56d1e7e

Please sign in to comment.