Since we've upgraded, OLD wiki edits have surfaced into the approval queue for some reason. The problem is that our moderators cannot clear the queue. They try, but the items remain in the queue.
Note that content can be automatically moved to the approval queue because of XenForo 2's built-in spam checker. You should be seeing entries in the spam-trigger log.
There is a problem where, when the moderator tries to approve content in the approval queue, it is checked for spam again. Since the content is the same and it was already flagged as spam, the content instantly gets sent back to the approval queue for being spam. Of course, the content should not be checked for spam at the same time that it is being approved.
In src/addons/vw/vw/XF/Entity/EntityBase.php, find:
Code:
if (!is_array($spaminfo))
BEFORE it, add:
Code:
if ($this->controller->instance->get_info('is_imod')) return true;
This site uses cookies to help personalize content, to tailor your experience, and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.