From ebceeb2f80d14f04ea21f116bdc5072e248d1ec5 Mon Sep 17 00:00:00 2001 From: stephen waite Date: Fri, 17 Nov 2023 09:02:28 -0500 Subject: [PATCH] fix: bug for rel-702 --- interface/orders/orders_results.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/orders/orders_results.php b/interface/orders/orders_results.php index 62bf9d54610..228377c105e 100644 --- a/interface/orders/orders_results.php +++ b/interface/orders/orders_results.php @@ -27,7 +27,7 @@ $form_review = empty($_GET['review']) ? 0 : 1; // Check authorization. -$thisauth = AclMain::aclCheckCore('patients', 'lab'); +$thisauth = AclMain::aclCheckCore('patients', 'sign'); if (!$thisauth) { echo (new TwigContainer(null, $GLOBALS['kernel']))->getTwig()->render('core/unauthorized.html.twig', ['pageTitle' => xl("Procedure Results")]); exit;