Okay I finally got it:
Code:
Database error in vBulletin 3.6.5:
Invalid SQL:
SELECT post.pagetext AS preview,
thread.threadid, thread.title AS threadtitle, thread.forumid, pollid, open, replycount, postusername, postuserid, thread.iconid AS threadiconid,
thread.lastpost, thread.lastposter, thread.lastpostid, thread.dateline, IF(views<=replycount, replycount+1, views) AS views, notes, thread.visible, sticky, votetotal, thread.attach,
hiddencount, deletedcount
, NOT ISNULL(subscribethread.subscribethreadid) AS issubscribed
, deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason
, threadredirect.expires
,thread_user.usergroupid, thread_user.membergroupids, thread_user.userid
FROM veh_thread AS thread
LEFT JOIN veh_deletionlog AS deletionlog ON(thread.threadid = deletionlog.primaryid AND deletionlog.type = 'thread')
LEFT JOIN veh_subscribethread AS subscribethread ON(subscribethread.threadid = thread.threadid AND subscribethread.userid = 1 AND canview = 1)
LEFT JOIN veh_post AS post ON(post.postid = thread.firstpostid)
LEFT JOIN veh_threadredirect AS threadredirect ON(thread.open = 10 AND thread.threadid = threadredirect.threadid)
LEFT JOIN user AS thread_user ON(thread.postuserid = thread_user.userid)
WHERE thread.threadid IN (0)
ORDER BY sticky DESC, lastpost DESC;
MySQL Error : Table '28_vorum.user' doesn't exist
Error Number : 1146
Date : Monday, April 2nd 2007 @ 04:48:18 AM
Script : http://xxxxx/forum/forumdisplay.php?f=6
Referrer : http://xxxxx/forum/index.php
IP Address : xxx.xxx.xxx.xxx
Username : xxxxx
Classname : vB_Database
And it's caused by this plugin:
PHP Code:
$hook_query_fields .= ',thread_user.usergroupid, thread_user.membergroupids, thread_user.userid';
$hook_query_joins .= 'LEFT JOIN user AS thread_user ON(thread.postuserid = thread_user.userid)';
Hook: forumdisplay_query