Hi Adam,
I found the error on file /ilias/Services/AccessControl/classes/class.ilRbacReview.php
Error request on line 2010 is :
$query = 'SELECT parent ref FROM rbac_fa '.
'WHERE rol_id = '.$ilDB->quote($a_role_id,'integer').' '.
'AND assign = '.$ilDB->quote('y','text');
Good request is :
$query = 'SELECT parent FROM rbac_fa '.
'WHERE rol_id = '.$ilDB->quote($a_role_id,'integer').' '.
'AND assign = '.$ilDB->quote('y','text');
Now it's all right with permission tab (I think so, I'll install a second Ilias with mysql database)
I will be back for other questions ;-)
Regards
Totophe56