#35 Do not right align 'Reposition elements' text

This commit is contained in:
Mark Nelson 2017-08-08 11:10:59 +08:00
parent 44b3a77a5f
commit 3c7c32e619

View file

@ -280,7 +280,7 @@ class edit_form extends \moodleform {
get_string('rearrangeelements', 'customcert'));
// Add the table to the form.
$mform->addElement('static', 'elements_' . $page->id, get_string('elements', 'customcert'), \html_writer::table($table)
. \html_writer::tag( 'div', $link, array('style' => 'text-align:right')));
. \html_writer::tag( 'div', $link));
$mform->addHelpButton('elements_' . $page->id, 'elements', 'customcert');
}