diff --git a/mod/forum/mod.html b/mod/forum/mod.html
index e7e7d7d9e29..d6a02edc677 100644
--- a/mod/forum/mod.html
+++ b/mod/forum/mod.html
@@ -119,7 +119,7 @@
//Only show rss parameters if rss is activated at site and forum levels
if ($CFG->enablerssfeeds && $CFG->forum_enablerssfeeds) {
echo "
";
- echo "".get_string("rsstype")." | ";
+ echo "".get_string("rsstype").": | ";
echo "";
unset($choices);
$choices[0] = get_string("none");
@@ -131,7 +131,7 @@
echo " |
";
echo "";
- echo "".get_string("rssarticles")." | ";
+ echo "".get_string("rssarticles").": | ";
echo "";
unset($choices);
$choices[0] = "0";
diff --git a/mod/glossary/mod.html b/mod/glossary/mod.html
index c55aa71398f..b6a872bf744 100644
--- a/mod/glossary/mod.html
+++ b/mod/glossary/mod.html
@@ -332,7 +332,7 @@ if (!$mainglossary or $mainglossary->id == $form->instance ) {
//Only show rss parameters if rss is activated at site and glossary levels
if ($CFG->enablerssfeeds && $CFG->glossary_enablerssfeeds) {
echo " |
";
- echo "".get_string("rsstype")." | ";
+ echo "".get_string("rsstype").": | ";
echo "";
unset($choices);
$choices[0] = get_string("none");
@@ -344,7 +344,7 @@ if (!$mainglossary or $mainglossary->id == $form->instance ) {
echo " |
";
echo "";
- echo "".get_string("rssarticles")." | ";
+ echo "".get_string("rssarticles").": | ";
echo "";
unset($choices);
$choices[0] = "0";
|