Skip to content

Commit

Permalink
MDL-58776 core_tag: removed whitespace from id attribute
Browse files Browse the repository at this point in the history
This was preventing the JS from finding the element.
  • Loading branch information
mdjnelson committed May 17, 2017
1 parent 1f36a07 commit f92e27d
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 @@ -239,7 +239,7 @@
array('id' => 'tag-management-delete', 'type' => 'submit',
'class' => 'tagdeleteselected btn btn-secondary', 'name' => 'bulkdelete'));
echo html_writer::tag('button', get_string('combineselected', 'tag'),
array('id' => 'tag-management-combine ', 'type' => 'submit',
array('id' => 'tag-management-combine', 'type' => 'submit',
'class' => 'tagcombineselected btn btn-secondary', 'name' => 'bulkcombine'));
echo html_writer::end_tag('p');
}
Expand Down

0 comments on commit f92e27d

Please sign in to comment.