
01-23-2016, 07:27 AM
|
 |
|
|
Join Date: Oct 2010
Location: iraq
Posts: 122
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by MarkFL
Try changing the query to:
PHP Code:
$myfeatured = $vbulletin->db->query_first("
SELECT COUNT(*) AS thread_count, thread.postuserid
FROM " . TABLE_PREFIX . "thread AS thread
INNER JOIN " . TABLE_PREFIX . "featuredthreads AS featuredthreads
ON thread.threadid = featuredthreads.threadid
WHERE thread.postuserid = " . $post['userid'] . "
GROUP BY thread.postuserid
");
In the plugins titled:
- Show Featured Authors (Postbit)
- Show Featured Authors (Postbit - Quick Reply)
- Show Featured Authors (Profile)
If that works, then we will proceed from there. 
|
awesome
works successfully
thank you
|