Skip to content

Commit

Permalink
recall critical fix (openemr#3705)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Jul 2, 2020
1 parent 6682cac commit 3240566
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions interface/main/messages/save.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@
$query = "SELECT * FROM patient_data WHERE pid=?";
$result = sqlQuery($query, array($_REQUEST['pid']));
$result['age'] = $MedEx->events->getAge($result['DOB']);
// uuid is binary and will break json_encode in binary form (not needed, so will remove it from $result array)
unset($result['uuid']);

/**
* Did the clinician create a PLAN at the last visit?
Expand Down

0 comments on commit 3240566

Please sign in to comment.