Topic: PHP 8 Error

Here i dont know the reason with check_edit_access.

function check_edit_access($name)
{
    global $input_security;

    $access = @$input_security[$name];

    if (!$access)
        $access = @$input_security['']; // default access level

    if (!$access)
        return true; // if constraint is not defined edit access is allowed

    return  user_check_access($access);
}

Here the $input_security, this variable never used anywhere inside the system. @joe, @itronics, Looking your feedback

Subscription service based on FA
HRM CRM POS batch Themes

Re: PHP 8 Error

This helper function was implemented for additional fine grained access control. Current access scheme allows only constraints on access to application page. As far as I know it was never fully implemented in core FA code, maybe some extensions use it.
J.

Re: PHP 8 Error

Ok good.
But it's undefined variable in php 8. May be we need to set whether the array exist to proceed.

Subscription service based on FA
HRM CRM POS batch Themes