MercuryBoard Error
mercuryboard has exited with an error
Unknown column 't.topic_id' in 'on clause'
This type of error is reported by MySQL.
SELECT
DISTINCT(p.post_author) as dot,
t.topic_id, t.topic_title, t.topic_last_poster, t.topic_starter, t.topic_replies, t.topic_modes,
t.topic_edited, t.topic_icon, t.topic_views, t.topic_description, t.topic_moved,
s.user_name AS topic_starter_name,
m.user_name AS topic_last_poster_name
FROM
mb_topics t,
mb_users m,
mb_users s
LEFT JOIN mb_posts p ON (t.topic_id = p.post_topic AND p.post_author = 1)
WHERE
((t.topic_forum = 8) OR (t.topic_modes & 32)) AND
m.user_id = t.topic_last_poster AND
s.user_id = t.topic_starter
ORDER BY
(t.topic_modes & 16) DESC,
t.topic_edited DESC
LIMIT
0, 10
Check status of problem (recommended)
View debug information (advanced)