I too have suffered from this issue, however, if you disable it it goes away. But if you uninstall it, you get database errors.
Any ideas on how to solve the database errors?
Code:
Invalid SQL:
SELECT
forum.title as forumtitle,
forum.forumid,
thread.threadid,
thread.title as threadtitle,
thread.postuserid as posterid,
thread.postusername as poster,
thread.dateline,
thread.replycount,
thread.isfeatured,
thread.fdesc,
thread.iconid,
post.pagetext
FROM vb_thread as thread
LEFT JOIN vb_forum as forum ON(forum.forumid = thread.forumid)
LEFT JOIN vb_post as post ON(post.postid = thread.firstpostid)
WHERE
thread.isfeatured = 1
ORDER BY DESC;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DESC' at line 19