We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7099ecf commit b50ec13Copy full SHA for b50ec13
PFBC/Element/Checkbox.php
@@ -24,7 +24,7 @@ public function render() {
24
$value = $this->getOptionValue($value);
25
26
echo '<label class="', $labelClass, '">';
27
- echo '<input id="', $this->_attributes["id"], '-', $count, '"', $this->getAttributes(array("id", "class", "value", "checked", "required")), ' value="', $this->filter($value), '"';
+ echo '<input id="', $this->_attributes["id"], '-', $count, '"', $this->getAttributes(array("id", "class", "value", "checked")), ' value="', $this->filter($value), '"';
28
if(in_array($value, $this->_attributes["value"]))
29
echo ' checked="checked"';
30
echo '/> ', $text, ' </label> ';
0 commit comments