I do believe that was hotfixed in the latest version, which was on the third of May, so if you downloaded the product before that grab the files again.
If that don't work here is the manual edits:
dbtech/vbnominate/includes/class_profileblock.php
Find
PHP Code:
if (in_array($data_data['nomnom_id'], $winner_ids))
Replace with
PHP Code:
if (in_array($data_data['nomnom_id'], (array)$winner_ids))
and Find
PHP Code:
if (in_array($data_data['nomnom_id'], $nominated_ids))
Replace with
PHP Code:
if (in_array($data_data['nomnom_id'], (array)$nominated_ids))
Let me know which solution works.
Bookmarks