Quote:
Originally posted by Birdie501
Hi bad_madman,
can you please tell me what you have changed, because i dont want to search through or make a new install.
Thanks.
|
Search in file showthread.php for:
Code:
post.*".iif($bmpublicbrowse!="0",",SUM(bookmarks.public) AS bmcount","").",post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,".iif($forum[allowicons],'icon.title as icontitle,icon.iconpath,','')."
and replace with:
Code:
post.*".iif($bmpublicbrowse!="0",",SUM(bookmarks.public) AS bmcount,SUM(bookmarks.counter) AS allhits","").",post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,".iif($forum[allowicons],'icon.title as icontitle,icon.iconpath,','')."
and search in showthread.php for:
Code:
".iif ($bmpublicbrowse!="0","LEFT JOIN bookmarks ON bookmarks.userid=user.userid","")."
WHERE $postids
GROUP BY post.postid
and replace with:
Code:
".iif ($bmpublicbrowse!="0","LEFT JOIN bookmarks ON bookmarks.userid=user.userid AND bookmarks.public='1'","")."
WHERE $postids
GROUP BY post.postid
that's all