Can anyone please tell me why I can't get this to pull anything in the private.php? What I am trying to do is pull the threads that each user started and I have it listed in the postbit, usernotes, showpost and even the profile, but for some reason I can't pull it to have it show in the pm. Anyone have any ideas I might be missing?
Here's the code I am using:
PHP Code:
$yourthreads = $DB_site->query_first("
SELECT COUNT(threadid) AS count
FROM " . TABLE_PREFIX . "thread
WHERE postuserid='".$userid."'
");
$postthreads = $yourthreads['count'];
$postthreads = vb_number_format($postthreads);
and I placed it right ABOVE:
PHP Code:
$pm = array_merge($pm, $fromuserinfo);
in the private.php