Make WordPress Core

Opened 16 years ago

Closed 16 years ago

Last modified 16 years ago

#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)

#1 @scribu
16 years ago

  • Milestone Awaiting Review3.1

#2 @nacin
16 years ago

  • Milestone 3.1
  • Resolutioninvalid
  • Status newclosed

That's not a bug. It links to the site being syndicated, versus the feed (which is where the icon goes).

#3 @scribu
16 years ago

Ah, you beat me to it.

Note: See TracTickets for help on using tickets.