Quote:
Originally Posted by Nathan2006
Found just 1 problem
When a member views another members profile when looking at the Best Threads list at the bottom all the threads the user chose don't show up for other members to see.
That's a member choosing best threads and the admin not being able to view anything
I did all the template edits and the table is there but no info in it for other threads
Thank you for any help 
|
Yes, one can only see the threads in one's own profile but not the threads in other members' profiles.
Replace
3 in hook location
member_start with:
PHP Code:
$mybestthread1 = $vbulletin->GPC['userid'];
$mybestthread2 = mysql_query("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid = $mybestthread1");
while ($row = mysql_fetch_assoc($mybestthread2)) {
$mybestthreads = $row['oneof'];
}
if ($mybestthreads == NULL) {
$mybestthreads = "0";
}