From 324d97ca65ced9882461b5c99fb45223bfb3ff0e Mon Sep 17 00:00:00 2001 From: stronk7 Date: Wed, 7 Sep 2005 17:07:52 +0000 Subject: [PATCH] Some RSS readers seems to have problems with that wrong p tag. Merged from MOODLE_15_STABLE --- lib/rsslib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rsslib.php b/lib/rsslib.php index e0e89a397d6..e818c951f5a 100644 --- a/lib/rsslib.php +++ b/lib/rsslib.php @@ -217,7 +217,7 @@ function rss_add_items($items) { //We put it in the description instead because it's more important //for moodle than most other feeds, and most rss software seems to ignore //the author field ... - $item->description = get_string('byname','',$item->author).'.  

'.$item->description.'

'; + $item->description = get_string('byname','',$item->author).'.  

'.$item->description.'

'; } $result .= rss_full_tag('description',3,false,$item->description); $result .= rss_end_tag('item',2,true);