Skip to content

Commit

Permalink
fix: bug (openemr#7551)
Browse files Browse the repository at this point in the history
* fix: bug

* typo

* better fix
  • Loading branch information
stephenwaite authored Jul 10, 2024
1 parent 08b5625 commit ee2bef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/main/calendar/modules/PostCalendar/pnuser.php
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ function postcalendar_user_search()
// build our search query
foreach ($keywords as $word) {
if (!empty($sqlKeywords)) {
$sqlKeywords .= " $k_andor ";
$sqlKeywords .= " " . escape_identifier($k_andor, ['AND', 'OR'], true) . " ";
}

$sqlKeywords .= '(';
Expand Down

0 comments on commit ee2bef8

Please sign in to comment.