Skip to content

Commit

Permalink
add form-check-input
Browse files Browse the repository at this point in the history
  • Loading branch information
rjharishabh committed Oct 5, 2021
1 parent e7422d1 commit 7ef36ce
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -97,7 +97,7 @@
$uselessMenuItem = in_array($link->type, array('separator', 'heading', 'alias', 'url'));
$id = 'jform_menuselect';
?>
<input type="checkbox" class="novalidate" name="jform[assigned][]" id="<?php echo $id . $link->value; ?>" value="<?php echo (int) $link->value; ?>"<?php echo $selected ? ' checked="checked"' : ''; echo $uselessMenuItem ? ' disabled="disabled"' : ''; ?>>
<input type="checkbox" class="novalidate form-check-input" name="jform[assigned][]" id="<?php echo $id . $link->value; ?>" value="<?php echo (int) $link->value; ?>"<?php echo $selected ? ' checked="checked"' : ''; echo $uselessMenuItem ? ' disabled="disabled"' : ''; ?>>
<label for="<?php echo $id . $link->value; ?>" class="">
<?php echo $link->text; ?>
<?php if (Multilanguage::isEnabled() && $link->language != '' && $link->language != '*') : ?>
Expand Down

0 comments on commit 7ef36ce

Please sign in to comment.