Skip to content

Commit

Permalink
solved issue number #19930 (#19969)
Browse files Browse the repository at this point in the history
corrected typo to ensure proper checkbox functionality
  • Loading branch information
amone4 authored and Michael Babker committed Mar 25, 2018
1 parent 221d848 commit 8484317
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/com_finder/helpers/html/filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ public static function slider($options = array())
$html .= '<div class="control-group">';
$html .= '<div class="controls">';
$html .= '<label class="checkbox" for="tax-'
. $bk . '">';
. $nk . '">';
$html .= '<input type="checkbox" class="selector filter-node' . $classSuffix . '" value="' . $nk . '" name="t[]" id="tax-'
. $bk . '"' . $checked . ' />';
. $nk . '"' . $checked . ' />';
$html .= $nv->title;
$html .= '</label>';
$html .= '</div>';
Expand Down

0 comments on commit 8484317

Please sign in to comment.