Skip to content

Commit

Permalink
Some RSS readers seems to have problems with that wrong p tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Sep 7, 2005
1 parent 9fe7101 commit b12e186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rsslib.php
Expand Up @@ -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).'. &nbsp;<p>'.$item->description.'</p>';
$item->description = get_string('byname','',$item->author).'. &nbsp;<p />'.$item->description.'</p>';
}
$result .= rss_full_tag('description',3,false,$item->description);
$result .= rss_end_tag('item',2,true);
Expand Down

0 comments on commit b12e186

Please sign in to comment.