Skip to content

Commit

Permalink
Merge branch 'MDL-62823-m34' of https://github.com/NeillM/moodle into…
Browse files Browse the repository at this point in the history
… MOODLE_34_STABLE
  • Loading branch information
David Monllao committed Jul 10, 2018
2 parents 080bb92 + cc00882 commit c07a557
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion filter/manage.php
Expand Up @@ -202,7 +202,8 @@


echo html_writer::table($table); echo html_writer::table($table);
echo html_writer::start_tag('div', array('class'=>'buttons')); echo html_writer::start_tag('div', array('class'=>'buttons'));
echo html_writer::empty_tag('input', array('type'=>'submit', 'name'=>'savechanges', 'value'=>get_string('savechanges'))); $submitattr = ['type' => 'submit', 'name' => 'savechanges', 'value' => get_string('savechanges'), 'class' => 'btn btn-primary'];
echo html_writer::empty_tag('input', $submitattr);
echo html_writer::end_tag('div'); echo html_writer::end_tag('div');
echo html_writer::end_tag('div'); echo html_writer::end_tag('div');
echo html_writer::end_tag('form'); echo html_writer::end_tag('form');
Expand Down

0 comments on commit c07a557

Please sign in to comment.