That's already been reported and fixed actually
- http://www.nukedgallery.net/postt3930.html [nukedgallery.net]
I need to get the new code out. Was hoping to get more testing done by independent users, but nobody else has time.
The fix is this: Open g2helper.php
Find:Code: › // not anonymous user
if ($user->data['username'] != 'Anonymous') {
Replace with:Code: › // not anonymous user or bot
if ($user->data['user_type'] != USER_IGNORE)
{