MyBB Community Forums

Full Version: change everyone from invisible to visible
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
just converted a forum from phpbb to mybb and everyone is set to invisible. is there an sql query I can run to set it so everyone is visible?
fixed it myself with this query:

UPDATE `mybb_users` SET `invisible` = '0' WHERE `invisible` = '1'