Skip to content

Commit

Permalink
bug fix (#6480)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed May 29, 2023
1 parent d6b3eae commit 3e80e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/patient_file/reminder/patient_reminders.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
if (($_GET['mode'] == 'admin') && !AclMain::aclCheckCore('admin', 'super')) {
$thisauth = false;
}
if (($_GET['mode'] != 'admin') && !AclMain::aclCheckCore('patients', 'reminder')) {
if (($_GET['mode'] != 'admin') && !AclMain::aclCheckCore('patients', 'reminder', '', 'write')) {
$thisauth = false;
}
if (!$thisauth) {
Expand Down

0 comments on commit 3e80e72

Please sign in to comment.