trackback pings stored w/o post_id
Status: Inactive
Brought to you by:
ubik77
v. 0.5.1
symptoms:
when listing trackback pings, none is displayed.
cause:
trackback pings are stored with invalid post_id
(post_id=0).
solution:
on trackback.php, need to set post_id in the $trackback
array
// store trackback ping in the db
$trackback = array();
$trackback['trackback_title'] = $_POST['title'];
$trackback['trackback_excerpt'] = $_POST
['excerpt'];
$trackback['trackback_url'] = $_POST['url'];
$trackback['trackback_blog_name'] = $_POST
['blog_name'];
// more importantly, set the post_id too.
$trackback['post_id'] = $post_id;
Logged In: YES
user_id=342445
This bug has been addressed in CoMoblog version 1.0 - a branch project of
EasyMoblog. If you like, please see http://comoblog.serialmonkey.com.
If problems still occur please comment in http://sourceforge.net/tracker/
index.php?func=detail&aid=1280323&group_id=143354&atid=755237