Hello, all!
We've spot an issue in the WP Security Scan and WebsiteDefender WordPress Security plug-ins. What's causing this is that the rights array is not found because when I reviewed the code before releasing the new versions I missed an underscore "_".
This issue can be fixed easily using the plug-in editor in your wp admin back-end.
Just edit the appropriate files as in example below:
For the WP Security Scan plug-in, the problem is in the libs/functions.php file on line 253:
if (in_array($_right, $tooManyRights))
where it should have been:
if (in_array($_right, $_tooManyRights))
The same change should be applied for WebsiteDefender WordPress Security plug-in, this time in the php/acxUtil.php on line 226.
I'll update the code in a new version release. I'm very sorry for the inconvenience!