When I logged in as Super Administrator, I got the following error.
Code:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 523800 bytes) in /data/html/administrator/components/com_comprofiler/library/cb/cb.acl.php on line 498
I check the line number: 498 inside get_group_parent_ids().
It called the function itself recursively until memory limit 128MB is exceeded.
Code:
function get_group_parent_ids( $gid = null ) {
....
$paths[$gid] = array_merge( $paths[$gid], [b]$this->get_group_parent_ids( 6 )[/b]);
....
}