From a75758cda4fc1f58f2d0d3f00f989fd26076eba4 Mon Sep 17 00:00:00 2001 From: dhawes Date: Tue, 25 Jan 2005 16:12:01 +0000 Subject: [PATCH] Fixed some improperly escaped double quotes within literal strings --- blocks/rss_client/block_rss_client_action.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/blocks/rss_client/block_rss_client_action.php b/blocks/rss_client/block_rss_client_action.php index dd7b33d19d..38da44ae7c 100644 --- a/blocks/rss_client/block_rss_client_action.php +++ b/blocks/rss_client/block_rss_client_action.php @@ -168,8 +168,8 @@ $rsserror = ob_get_contents(); ob_end_clean(); - print ''."\n"; - print ''."\n"; + print '
'. $rss->channel['title'] .'
'."\n"; + print ''."\n"; for($y=0; $y < count($rss->items); $y++) { // $rss->items[$y]['title'] = blog_unhtmlentities($rss->items[$y]['title']); if ($rss->items[$y]['link'] == '') { @@ -180,13 +180,13 @@ $rss->items[$y]['title'] = '>>'; } - print ''."\n"; if (file_exists($CFG->dirroot .'/blog/lib.php')) { - print '
'. $rss->channel['title'] .'
'."\n"; + print '
'."\n"; print ''. $rss->items[$y]['title']; print ''."\n"; print ''."\n"; - print ''. get_string('blog_blog_this', 'blog').''."\n"; + print ''."\n"; + print ''. get_string('blog_blog_this', 'blog').''."\n"; print ''. get_string('blog_blog_this', 'blog') .''."\n"; } else { print ' '; -- 2.39.5