Ok, a friend of mine helped me.
Quote:
Originally Posted by changes in XML
Row 553 ff:
$helpfulposts = $db->query_read("
SELECT ha.yesno,post.title,post.postid,user.username,thre ad.title as ttitle
FROM " . TABLE_PREFIX . "helpfulanswer as ha
LEFT JOIN " . TABLE_PREFIX . "post as post ON (ha.postid = post.postid)
LEFT JOIN " . TABLE_PREFIX . "thread AS thread ON(post.threadid = thread.threadid)
LEFT JOIN " . TABLE_PREFIX . "user as user ON (ha.userid = user.userid)
WHERE post.userid = ". $vbulletin->userinfo['userid'] ."
ORDER BY ha.dateline DESC
LIMIT 50
");
and
Row 572:
$templater->register('title', $helpfulpost['ttitle']);
|
Quote:
Originally Posted by changes in helpful_answers_notbit
Find in row 3
{vb:raw postid} #{vb:raw postid} -
and delete it
|