has anyone noticed a problem with this when you split a thread with thanked posts?
i just did it and it caused me quite a few problems , i had to do this in function_showthread.php to get rid of a few errors.
if($post_thanks_cash){
foreach ($post_thanks_cash AS $thanks)
{
if ($thanks[postid] == $post[postid])
{
$nb ++;
}
}
}
the downside is that although the posts were thanked they are no longer recorded as thanked in the split thread. The above gets rid of the foreach and header problems i had. Was this already solved?
|