MDL-37190 blocks: fix erroneous strings in the block_blog_tags block

This commit is contained in:
Jake Dallimore
2018-02-01 10:33:19 +08:00
parent 5eca8239f2
commit 878f4b7ae0
+2 -2
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);