Skip to content

Commit

Permalink
blocks/rss_client: MDL-13932: viewfeed.php typo
Browse files Browse the repository at this point in the history
link -> description
  • Loading branch information
poltawski committed Jul 31, 2009
1 parent 5966474 commit 3095d19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/rss_client/viewfeed.php
Expand Up @@ -101,7 +101,7 @@
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";
Expand Down

0 comments on commit 3095d19

Please sign in to comment.