XF 1.5 Moderation Queue order

It would require an add-on or custom development.

Although, really, it could also be done with a code edit. Not usually advised and you would have to reapply the edit after each XF upgrade but it's relatively painless.

In the file: library/XenForo/Model/ModerationQueue.php

Find:
PHP:
ORDER BY content_date

Replace:
PHP:
ORDER BY content_date DESC
 
Top Bottom