Skip to content

Commit

Permalink
MDL-69340 tag: Correct the filter input HTML in the tag manager
Browse files Browse the repository at this point in the history
  • Loading branch information
mickhawkins authored and Jenkins committed Sep 3, 2020
1 parent afe7dff commit 18e85de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tag/manage.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
print('<div class="tag-management-form generalbox"><label class="accesshide" for="id_tagfilter">'. get_string('search') .'</label>'.
'<input type="hidden" name="tc" value="'.$tagcollid.'" />'.
'<input type="hidden" name="perpage" value="'.$perpage.'" />'.
'<input id="id_tagfilter" name="filter" type="text" value=' . s($filter) . '>'.
'<input id="id_tagfilter" name="filter" type="text" value="' . s($filter) . '">'.
'<input value="'. s(get_string('search')) .'" type="submit" class="btn btn-secondary"> '.
($filter !== '' ? html_writer::link(new moodle_url($PAGE->url, array('filter' => null)),
get_string('resetfilter', 'tag'), array('class' => 'resetfilterlink')) : '').
Expand Down

0 comments on commit 18e85de

Please sign in to comment.