Opened 20 years ago
Closed 20 years ago
#2136 closed defect (bug) (fixed)
Edit post doesn't show completed trackbacks
| Reported by: |
|
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)
Note: See
TracTickets for help on using
tickets.
This is for the RC2 release.