Support Toolkit

Frequently Asked Questions

Topics are now started by Guest

Due to a bug in the BBCode Reparser in all Support Toolkit versions prior to v1.0.5, some topics might be marked as started by a guest. To resolve this issue run the following query against your database.

Code: Select all

UPDATE phpbb_topics SET topic_first_poster_name = (SELECT username FROM phpbb_users WHERE user_id = topic_poster) WHERE topic_first_poster_name = '';

If you use a different prefix don't forget to change phpbb_ to the prefix that you've chosen during installation.