|
$query = "SELECT groupid,cpaccess,modaccess,uploads,reviews,editpho,editposts,reqmod,uplimit FROM {$Globals['rp_db_prefix']}usergroups WHERE groupid='$groupvalue' LIMIT 1";
$result = ppmysql_query($query,$link);
list( $usergroup,$cpaccess_a,$modaccess_a,$uploads_a,$reviews_a,$ueditpho_a,$ueditposts_a,$reqmod_a,$uplimit_a ) = mysql_fetch_row($result);
Check your reviewpost usergroup table this is where your failing
The upgrade adds the new new fields you need so you need to run that query and find out what is the issue.
|