The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
||||
|
||||
![]()
Well, it depends whether you have the 'threadviewslive' option set or not. So to account for either case, you'd need something like:
Code:
$totviews = 0; if ($vbulletin->options['threadviewslive']) { $query = " SELECT SUM(views) AS totviews FROM " . TABLE_PREFIX . "thread WHERE forumid = $forumid "; } else { $query = " SELECT COUNT(*) AS totviews FROM " . TABLE_PREFIX . "threadviews AS threadviews INNER JOIN " . TABLE_PREFIX . "thread AS thread ON (thread.threadid = threadviews.threadid) WHERE thread.forumid = $forumid "; } if ($result = $vbulletin->query_first_slave($query)) { $totviews = $result['totviews']; } Untested. If the inner join doesn't work try a right join, I always get confused between those two. :erm: -- hugh |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|