Merge branch 'MDL-37190-master-fix2' of https://github.com/snake/moodle

This commit is contained in:
Andrew Nicols 2018-01-31 14:06:13 +08:00 committed by Jake Dallimore
commit ec010c09b3

View File

@ -31,9 +31,9 @@
class block_blog_tags_edit_form extends block_edit_form {
protected function specific_definition($mform) {
// Fields for editing HTML block title and contents.
$mform->addElement('header', 'configheader', get_string('configtitle', 'block_blog_tags'));
$mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
$mform->addElement('text', 'config_title', get_string('blocktitle', 'blog'));
$mform->addElement('text', 'config_title', get_string('configtitle', 'block_blog_tags'));
$mform->setDefault('config_title', get_string('blogtags', 'blog'));
$mform->setType('config_title', PARAM_TEXT);