From 8e4636c26ffe13d2873189ef80c7240749e64233 Mon Sep 17 00:00:00 2001 From: scyrma Date: Wed, 19 Dec 2007 05:58:27 +0000 Subject: [PATCH] Fix a bug passed on after commit of by http://lists.moodle.org/arc/commits/2007-12/msg00352.html There shouldn't be html tags in this place. --- blocks/rss_client/block_rss_client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks/rss_client/block_rss_client.php b/blocks/rss_client/block_rss_client.php index aa3d93e74a..5e843d2a61 100644 --- a/blocks/rss_client/block_rss_client.php +++ b/blocks/rss_client/block_rss_client.php @@ -275,7 +275,7 @@ // if the feed has a title if (!empty($feedtitle) and ($feedtitle != '')) { // set the block's title to the feed's title - $this->title = $feedtitle; + $this->title = strip_tags($feedtitle); } } return $returnstring; -- 2.39.5