MyBB Community Forums

Full Version: Quick reply query
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What's the query to allow quick reply for all users? Somehow quick reply is getting disabled for someĀ users
UPDATE  `mybb_users` SET  `showquickreply` = '1';

you may also try using below query which should work for the new users
ALTER TABLE `mybb_users` CHANGE `showquickreply` `showquickreply` TINYINT(1) NOT NULL DEFAULT '1';