From 55ab2bce557e3bcf356f6b74767e8910752fddb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20B=C3=B6sch?= Date: Wed, 13 Jan 2021 11:00:29 +0100 Subject: [PATCH] MDL-70621 mod_forum: use forum rsstype string. --- mod/forum/mod_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/forum/mod_form.php b/mod/forum/mod_form.php index 935f95aaebd..65cd77a75ea 100644 --- a/mod/forum/mod_form.php +++ b/mod/forum/mod_form.php @@ -133,7 +133,7 @@ class mod_forum_mod_form extends moodleform_mod { $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);