Skip to content

Commit

Permalink
MDL-70621 mod_forum: use forum rsstype string.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaboesch committed Jan 29, 2021
1 parent 9dabd07 commit 55ab2bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/forum/mod_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function definition() {
$choices[0] = get_string('none');
$choices[1] = get_string('discussions', 'forum');
$choices[2] = get_string('posts', 'forum');
$mform->addElement('select', 'rsstype', get_string('rsstype'), $choices);
$mform->addElement('select', 'rsstype', get_string('rsstype', 'forum'), $choices);
$mform->addHelpButton('rsstype', 'rsstype', 'forum');
if (isset($CFG->forum_rsstype)) {
$mform->setDefault('rsstype', $CFG->forum_rsstype);
Expand Down

0 comments on commit 55ab2bc

Please sign in to comment.