Skip to content

Commit

Permalink
Add name attribute to radio buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan committed Jan 24, 2017
1 parent e09acc5 commit 6d80816
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -27,10 +27,10 @@
<div class="uk-form-row">
<label class="uk-form-label uk-width-3-10"><?php echo WFText::_('WF_SEARCHREPLACE_DIRECTION');?></label>
<div class="uk-form-controls uk-width-7-10">
<input id="backwardsu" type="radio" />
<input id="backwardsu" name="backwards" type="radio" />
<label for="backwardsu"><?php echo WFText::_('WF_SEARCHREPLACE_UP');?></label>

<input id="backwardsd" type="radio" checked />
<input id="backwardsd" name="backwards" type="radio" checked />
<label for="backwardsd"><?php echo WFText::_('WF_SEARCHREPLACE_DOWN');?></label>
</div>
</div>
Expand Down

0 comments on commit 6d80816

Please sign in to comment.