Quote:
Originally Posted by Boofo
What about the Show Thumbnails not working with pm attachments? Can that be fixed?
|
Of course, of course :nervous:
In profile.php search for this:
Code:
$show['thumbnail'] = iif($post['hasthumbnail'] == 1 AND $vboptions['attachthumbs'] AND $showthumbs AND $post['postid'], 1, 0);
replace it with:
Code:
$show['thumbnail'] = iif($post['hasthumbnail'] == 1 AND $vboptions['attachthumbs'] AND $showthumbs AND ($post['postid'] OR $post['private']), 1, 0);