quote:
Originally posted by stonesour
if ($ibforums->member['name'] == $banned){
It looks like $ibforums->member['name'] is a string and $banned is an array. You need to do something like this...
code:
if ($ibforums->member['name'] == $banned['mem_name']){