Quote:
Originally Posted by ThinkingBig
Hello,
I want approve all threads which actually in moderation queue, how to do this? anyone can post me the magic method or sql query?
Thanks,
P.
|
To approve all threads in the moderation queue run this query:
Code:
UPDATE thread
SET visible = 1
WHERE visible = 0;
If you are using a custom prefix for your db tables, append it to the table name in the query above. Hope it helps.