#15436 closed defect (bug) (invalid)
RSS Widget Title not linking to feed source
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.1 |
Component: | Widgets | Keywords: | rss, widget, rss widget |
Focuses: | Cc: |
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.
That's not a bug. It links to the site being syndicated, versus the feed (which is where the icon goes).