#15436 closed defect (bug) (invalid)
RSS Widget Title not linking to feed source
| Reported by: | alettieri | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Widgets | Version: | 3.1 |
| Severity: | normal | Keywords: | rss, widget, rss widget |
| Cc: | Focuses: |
Description
There is a bug in the WP_Widget_RSS class in the (default-widgets.php) file.
Line: 740
$title = "<a class='rsswidget' href='$url' title='" . esc_attr__( 'Syndicate this content' ) ."'><img style='border:0' width='14' height='14' src='$icon' alt='RSS' /></a> <a class='rsswidget' href='$link' title='$desc'>$title</a>";
Fix:
$title = "<a class='rsswidget' href='$url' title='" . esc_attr__( 'Syndicate this content' ) ."'><img style='border:0' width='14' height='14' src='$icon' alt='RSS' /></a> <a class='rsswidget' href='$url' title='$desc'>$title</a>";
Change History (3)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
That's not a bug. It links to the site being syndicated, versus the feed (which is where the icon goes).