mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
blocks MDL-19010 Fixed a typo to make the title a string
This commit is contained in:
parent
e54f4a78cc
commit
e530f3a97b
1 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@ class block_rss_client_edit_form extends block_edit_form {
|
|||
protected function specific_definition($mform) {
|
||||
global $CFG, $DB, $USER;
|
||||
|
||||
// Fields for editing HTML block title and contents.
|
||||
// Fields for editing block contents.
|
||||
$mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
|
||||
|
||||
$mform->addElement('selectyesno', 'config_display_description', get_string('displaydescriptionlabel', 'block_rss_client'));
|
||||
|
@ -68,7 +68,7 @@ class block_rss_client_edit_form extends block_edit_form {
|
|||
get_string('feedsaddedit', 'block_rss_client') . '</a>');
|
||||
}
|
||||
|
||||
$mform->addElement('selectyesno', 'config_title', get_string('uploadlabel'));
|
||||
$mform->addElement('text', 'config_title', get_string('uploadlabel'));
|
||||
$mform->setType('config_title', PARAM_NOTAGS);
|
||||
|
||||
$mform->addElement('selectyesno', 'config_block_rss_client_show_channel_link', get_string('clientshowchannellinklabel', 'block_rss_client'));
|
||||
|
@ -77,4 +77,4 @@ class block_rss_client_edit_form extends block_edit_form {
|
|||
$mform->addElement('selectyesno', 'config_block_rss_client_show_channel_image', get_string('clientshowimagelabel', 'block_rss_client'));
|
||||
$mform->setDefault('config_block_rss_client_show_channel_image', 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue