Quote:
Originally Posted by Akyeame Kwame
Those who were nominated in the previous month are getting this error at the top of their profile pages now. Any fix?
Warning: in_array() expects parameter 2 to be array, boolean given in [path]/dbtech/vbnominate/includes/class_profileblock.php on line 86
Those who were nominated for one thing get this error once, those who were nominated for two things get it twice and so forth and so on. I think it has to do with the fixed user profile tab that shows nominated and won entries.
|
I'm sorry about that.
If you open
dbtech/vbnominate/includes/class_profileblock.php
Find
PHP Code:
if (in_array($data_data['nomnom_id'], $winner_ids))
and change it to
PHP Code:
if (in_array($data_data['nomnom_id'], (array)$winner_ids))
That should fix it
Dylan