ERROR:
SELECT
p.uid,
p.topic_id,
p.forum_id,
p.post_time,
p.icon,
t.topic_title,
t.topic_views,
t.topic_replies,
f.forum_name
FROM
runcms_bbplus_posts p,
runcms_bbplus_forums f
INNER JOIN runcms_bbplus_topics t ON t.topic_last_post_id = p.post_id
WHERE f.forum_id = t.forum_id
GROUP BY p.topic_id
ORDER BY t.topic_time DESC