Hello,
Your front-end moderation plugin has a bug - it displays form data even for anonymous / guest users, which is not supposed to happen.
The fix is very simple:
In line 58 of class.wpDiscuzFrontEndModeration.php, add the following:
if (!is_user_logged_in()) {
return false;
}
Please fix it ASAP. Thank you!

