WordPress.org

Make WordPress Core

Opened 5 years ago

Closed 5 years ago

#7404 closed defect (bug) (invalid)

No titles in dashboard_secondary rss feed

Reported by: radzio Owned by: anonymous
Priority: high Milestone:
Component: Administration Version: 2.6
Severity: normal Keywords: dashboard rss
Cc:

Description

Feed titles doesn't show because of bad variable used.

In wp-admin/includes/dashboard.php in line 396

change

echo "\t<li><a href='$link'><span class='post'>$post</span><span class='hidden'> - </span><cite>$author</cite></a></li>\n";

to

echo "\t<li><a href='$link'><span class='post'>$title</span> <span class='hidden'> - </span> <span class='hidden'> - </span><cite>$author</cite></a></li>\n";

Attachments (2)

dashboard.php (21.9 KB) - added by radzio 5 years ago.
7404.diff (622 bytes) - added by ionfish 5 years ago.

Download all attachments as: .zip

Change History (4)

radzio5 years ago

comment:1 ionfish5 years ago

Can you provide patches in diff format? E.g. the attached.

ionfish5 years ago

comment:2 westi5 years ago

  • Resolution set to invalid
  • Status changed from new to closed

This isn't a bug. $post is defined $title is split at the : and used for the $post and $author

Note: See TracTickets for help on using tickets.