From: poltawski <poltawski> Date: Fri, 31 Jul 2009 21:20:21 +0000 (+0000) Subject: blocks/rss_client: MDL-13932: viewfeed.php typo X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=3095d199325dee9fd91a9442a483b5ecc87b536b;p=moodle.git blocks/rss_client: MDL-13932: viewfeed.php typo link -> description --- diff --git a/blocks/rss_client/viewfeed.php b/blocks/rss_client/viewfeed.php index 55e1bbcc93..51f161c0da 100644 --- a/blocks/rss_client/viewfeed.php +++ b/blocks/rss_client/viewfeed.php @@ -101,7 +101,7 @@ echo '<table align="center" width="50%" cellspacing="1">'."\n"; echo '<tr><td colspan="2"><strong>'. $feedtitle .'</strong></td></tr>'."\n"; foreach ($rss->get_items() as $item) { echo '<tr><td valign="middle">'."\n"; - echo '<a href="'. $item->get_description() .'" target="_blank"><strong>'. $item->get_title(); + echo '<a href="'. $item->get_link() .'" target="_blank"><strong>'. $item->get_title(); echo '</strong></a>'."\n"; echo '</td>'."\n"; echo '</tr>'."\n";