X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=includes%2Faccess_levels.inc;h=0851d1a04f915e9dd6ae013cf3c8e077ca985d63;hb=0fd1eb74bd51889ce48a6ab5369e66a86cbe7da2;hp=77dcae9afc1f6ccf489945e2e76f957224b07131;hpb=0c35858b77d57a2990c547523b0b62d3eefb9b89;p=fa-stable.git diff --git a/includes/access_levels.inc b/includes/access_levels.inc index 77dcae9a..0851d1a0 100644 --- a/includes/access_levels.inc +++ b/includes/access_levels.inc @@ -240,6 +240,7 @@ $security_areas =array( 'SA_BANKJOURNAL' => array(SS_GL|11, _("Journal entries to bank related accounts")), 'SA_BUDGETENTRY' => array(SS_GL|9, _("Budget edition")), 'SA_STANDARDCOST' => array(SS_GL|10, _("Item standard costs")), + 'SA_ACCRUALS' => array(SS_GL|12, _("Revenue / Cost Accruals")), 'SA_GLANALYTIC' => array(SS_GL_A|1, _("GL analytical reports and inquiries")), 'SA_TAXREP' => array(SS_GL_A|2, _("Tax reports and inquiries")), @@ -300,7 +301,7 @@ function get_access_extensions($id) { $security_sections = $security_areas = array(); if (isset($ext['acc_file'])) - include($path_to_root.($ext['type'] == 'plugin' ? '/modules/':'/').$ext['path'].'/'.$ext['acc_file']); + include_once($path_to_root.'/'.$ext['path'].'/'.$ext['acc_file']); return array($security_areas, $security_sections); }