From d66fb0c97af3f3ccb5d5da1416eb3d4cca2e7748 Mon Sep 17 00:00:00 2001 From: stephen waite Date: Fri, 17 Nov 2023 02:05:02 -0500 Subject: [PATCH] fix: bug (#7032) --- 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 62bf9d546..228377c10 100644 --- a/interface/orders/orders_results.php +++ b/interface/orders/orders_results.php @@ -27,7 +27,7 @@ $form_batch = empty($_GET['batch']) ? 0 : 1; $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; -- 2.11.4.GIT