On line 81 of profile.php you have:
if ( !($p_arr['ID'] && ($logged['admin'] || $logged['moderator'] || $oProfile -> owner || $p_arr['Status'] = 'Active') ) )
The above line only has the one '='
apparently it should have two
Should be:
if ( !($p_arr['ID'] && ($logged['admin'] || $logged['moderator'] || $oProfile -> owner || $p_arr['Status'] == 'Active') ) )
Can any programmers confirm the above and tell us for why?
Regards,
Stuart