Skip to content

Commit

Permalink
Fix over-quoting of checkbox options (#319).
Browse files Browse the repository at this point in the history
  • Loading branch information
kohler committed Sep 8, 2023
1 parent cdb7ecc commit 96a574c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/paperoption.php
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ function render(FieldRender $fr, PaperValue $ov) {
if ($fr->want(FieldRender::CFPAGE)) {
$fr->title = "";
$th = $this->title_html();
$fr->value .= " <span class=\"pavfn\">{$th}</span>";
$fr->set_html($fr->value_html() . " <span class=\"pavfn\">{$th}</span>");
}
}
}
Expand Down

0 comments on commit 96a574c

Please sign in to comment.