Skip to content

Commit

Permalink
minor immunization fix in previous CCR Import commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Aug 1, 2013
1 parent 3186ab8 commit 915e90c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/patient_file/ccr_review_approve.php
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ function submit_form(val){
<table border="0" width="95%" >
<tr>
<?php
$query_existing_immunizations = sqlStatement("SELECT * FROM immunizations WHERE patient_id = ?",array($_REQUEST['pid']));
$query_existing_immunizations = sqlStatement("SELECT * FROM immunizations WHERE patient_id = ? AND added_erroneously = 0",array($_REQUEST['pid']));
$result = array();
while($res_existing_immunizations = sqlFetchArray($query_existing_immunizations)){
array_push($result,$res_existing_immunizations);
Expand Down

0 comments on commit 915e90c

Please sign in to comment.