Make WordPress Core

Opened 20 years ago

Closed 20 years ago

#2136 closed defect (bug) (fixed)

Edit post doesn't show completed trackbacks

Reported by: pirateking's profile pirateking Owned by:
Milestone: Priority: normal
Severity: major Version: 2.0
Component: Administration Keywords: trackbacks, administration
Focuses: Cc:

Description

Code in the edit-form-advanced references $pinged instead of: $post->pinged

if ('' != $post->pinged) {
	$pings .= '<p>'. __('Already pinged:') . '</p><ul>';
	$already_pinged = explode("\n", trim($post->pinged));
	foreach ($already_pinged as $pinged_url) {
		$pings .= "\n\t<li>$pinged_url</li>";
	}
	$pings .= '</ul>';
}

Also, it would be nice to do a second loop, showing posts to be pinged because of the new trackback method.

Change History (2)

#1 @pirateking
20 years ago

This is for the RC2 release.

#2 @ryan
20 years ago

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

(In [3347]) Fix already pinged list. Props pirateking. fixes #2136

Note: See TracTickets for help on using tickets.