Calash |
09-23-2008 11:07 AM |
I am getting the following error when I enable "Show Thread Visitor Counts"
Code:
Database error in vBulletin 3.7.3:
Invalid SQL:
SELECT * FROM vb_session WHERE session.lastactivity > 1222172495;
MySQL Error : Unknown table 'session' in where clause
Error Number : 1109
Everything else seems to be working good.
Edit, found the problem, in the forumdisplay_start hook the query to the session table does not have the table prefix. This is the code I edited to make work
Code:
$getvisitors = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "session WHERE " . TABLE_PREFIX . "session.lastactivity > $datecut");
Great mod, thank you for sharing it :)
|