Looks like version 2.2.6 is different from 2.2.2 (what I'm using). I'm guess that's for 2.2.6? Here's what i have, I think it's pretty much the same?
PHP Code:
LINE 406 TO.....
$counter=0;
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
if ($postdone[$post[postid]]) {
$counter--;
continue;
} else {
$postdone[$post[postid]]=1;
}
$postbits .= getpostbit($post[b][u],iif($counter==1 and $pagenumber==1 and $thread['forumid']==41 or $thread['forumid']==42 or $thread['forumid']==44 or $thread['forumid']==45, 'postbit_first', 'postbit')[/u][/b][u][/u]);
}
...418
(I added some code (in bold & Underlined) for my "first post different" hack.)
Here's what I tried:
PHP Code:
$counter=0;
$counter2=0;
$postdone = array();
$sigcache = array();
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
$counter2++;
if ($counter2!=1)
{
$maker='';
$maker_mail='';
$model_dl='';
}
if ($postdone[$post[postid]]) {
$counter--;
continue;
} else {
$postdone[$post[postid]]=1;
}
$postbits .= getpostbit($post[b][u],iif($counter==1 and $pagenumber==1 and $thread['forumid']==41 or $thread['forumid']==42 or $thread['forumid']==44 or $thread['forumid']==45, 'postbit_first', 'postbit')[/u][/b]);
}
I tried $post[maker] and $maker, and neither worked. Could it be due to the different version (if that was 2.2.6))
Thanks for all the help!